´úÂë¹ÜÀí/WCS/WIDESEAWCS_Client/src/router/viewGird.js
@@ -4,6 +4,10 @@ path: '/Sys_Log', name: 'sys_Log', component: () => import('@/views/system/Sys_Log.vue') },{ path: '/txt_log', name: 'txt_log', component: () => import('@/views/syslog/txt_log.vue') }, { path: '/Sys_User', ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Client/src/views/syslog/txt_log.vue
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,297 @@ <template> <div class="mian_log"> <div class="log_tree"> <div class="log_search"> <el-input v-model.lazy="filterText" placeholder="请è¾å ¥æ¥è¯¢å ³é®å" clearable /> <el-button type="success" @click="ReloadTree()">å· æ°</el-button> </div> <el-tree class="log_el_tree" ref="treeRef" :data="treeData" :props="treeProps" :filter-node-method="treeFilter"> <template #default="{ node, data }"> <div class="treeItem"> <div>{{ node.label }}</div> <div style="padding-left: 10px;" v-if="isFile(data)"> <a href="javascript:;" @click="GetContent(data)"> æå¼ </a> <!-- ||<a href="javascript:;" @click="DonwLog(data)"> ä¸è½½ </a> --> </div> </div> </template> </el-tree> </div> <div class="log_line"></div> <div class="log_content"> <div> <h2>{{ this.fileName }}</h2> <div class="log_size">{{ GetSize() }}</div> <el-checkbox v-model="keepRead">ä¿æè¯»å</el-checkbox> </div> <div ref="pre" v-if="content"> <el-progress :percentage="percentage" @click="ChangePercent($event)" color="#f56c6c" /> </div> <div ref="showdata" @scroll="handleScroll($event)" style="white-space: pre-wrap;word-break: break-all">{{ content }}</div> </div> </div> </template> <script> export default ({ data() { return { filterText: "", treeData: [], treeProps: { children: 'dirs', label: 'dirName', }, keepRead: false, percentage: 100, topStartPos: 0, fileSize: "", filePath: "", fileName: "", content: "", isClick: false, keepReadTimer: null } }, watch: { filterText(val) { this.$refs.treeRef.filter(val) }, keepRead(val) { if (val) { this.keepReadTimer = setInterval(() => { if (this.filePath) { var parm = { path: this.filePath, percent: 100, maxsize_KB: 10 } this.percentage = 100; this.http.post('/api/dt_log/GetLogData', parm).then((res) => { this.content = res.data.content; this.topStartPos = res.data.startIndex; this.$nextTick(function () { this.$refs.showdata.scrollTo(0, this.$refs.showdata.scrollHeight) }) }) } }, 1500); } else { clearInterval(this.keepReadTimer); } } }, methods: { treeFilter(value, data) { if (!value) return true return data.dirName.includes(value) }, isFile(data) { if (data.dirPath) { return data.dirPath.indexOf(".log") != -1; } return false; }, ChangePercent(event) { var bar = window.document.getElementsByClassName('el-progress-bar')[0] var res = event.offsetX / bar.offsetWidth * 100; var percent = parseFloat(res.toFixed(2)); if (percent < 1) { percent = 0; } if (percent > 99) { percent = 100; } this.percentage = percent; var parm = { path: this.filePath, percent: this.percentage, maxsize_KB: 20 } this.http.post('/api/dt_log/GetLogData', parm).then((res) => { this.isClick = true; this.content = res.data.content; this.topStartPos = res.data.startIndex; this.$nextTick(function () { if (percent == 100) { this.$refs.showdata.scrollTo(0, this.$refs.showdata.scrollHeight) } else { this.$refs.showdata.scrollTo(0, 1) } }) setTimeout(() => { this.isClick = false; }, 1000) }) }, GetContent(data) { var parm = { path: data.dirPath, percent: 100, maxsize_KB: 20 } this.filePath = data.dirPath; this.fileName = data.dirName; this.percentage = parm.percent; this.http.post('/api/dt_log/GetLogData', parm).then((res) => { this.content = res.data.content; this.topStartPos = res.data.startIndex; this.fileSize = res.data.len; this.$nextTick(function () { this.$refs.showdata.scrollTo(0, this.$refs.showdata.scrollHeight); }) }) }, handleScroll() { const scrollTop = this.$refs.showdata.scrollTop; if (scrollTop == 0 && !this.isClick) { if (this.topStartPos == 0) { this.percentage = 0; return; } var parm = { path: this.filePath, maxsize_KB: 10, topStartPos: this.topStartPos } this.http.post('/api/dt_log/GetLogData', parm).then((res) => { this.topStartPos = res.data.startIndex; var per = res.data.startIndex / res.data.len * 100; this.percentage = parseFloat(per.toFixed(2)); if (this.percentage == 0 && res.data.startIndex != 0) { this.percentage = 0.1; } this.content = res.data.content + this.content; this.$nextTick(function () { this.$refs.showdata.scrollTo(0, 1) }) }) } }, DonwLog(data) { var url = this.http.axios.defaults.baseURL + 'api/dt_log/DownLog'; url += "?filePath=" + data.dirPath; window.location.href = encodeURI(url); }, ReloadTree() { this.http.post("/api/dt_log/GetLogList", {}, "å è½½ç®å½ä¸â¦â¦") .then(res => { this.treeData = res.data.dirs; }) }, GetSize(size) { var size = this.fileSize; if (!size) { return '' } else if (size < 1024) { size = size + "B" } else if (size < 1024 * 1024) { size = (size / 1024).toFixed(2) + "KB" } else { size = (size / 1024 / 1024).toFixed(2) + "MB" } return "æä»¶å¤§å°:" + size; } }, mounted() { this.http.post("/api/dt_log/GetLogList", {}, "å è½½ç®å½ä¸â¦â¦") .then(res => { this.treeData = res.data.dirs; }) } }) </script> <style scoped> .mian_log { height: calc(100vh - 96px); padding: 10px 10px; display: flex; width: 100%; } .log_tree { width: 370px; height: 100%; display: flex; flex-direction: column; } .log_search { display: flex; } .log_search :last-child { margin-left: 5px; } .log_el_tree { width: 100%; overflow-x: auto; flex: 1; } .treeItem { overflow-x: auto; flex: 1; display: flex; justify-content: space-between; } .treeItem::-webkit-scrollbar { height: 5px; } .treeItem::-webkit-scrollbar-thumb { /* å®ä¹æ»å¨æ¡æ»åé¢è² */ background: #ccc; } .treeItem::-webkit-scrollbar-thumb:hover { /* å®ä¹æ»å¨æ¡æ»åæ¬åé¢è² */ background: orange; } .log_line { margin: 5px 16px; border-left: 2px dashed orange; } .log_content { flex: 1; display: flex; flex-direction: column; } .log_content>div:first-child { display: flex; justify-content: space-between; align-items: center; } .log_size { font-size: 13px; color: #bbb; } .log_content>div:last-child { flex: 1; overflow-y: scroll; margin-top: 5px; padding-top: 5px; border-top: 1px solid black; } a { color: blue; } </style> ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/DesignTimeBuild/.dtbcache.v2Binary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/FileContentIndex/1b00f138-6a75-423c-99f3-312a798edc64.vsidxBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/FileContentIndex/393ff91d-58e7-4832-9c0e-6093d47c7dfd.vsidxBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/FileContentIndex/7310c6a2-3ece-4ba2-b059-934b3221ede2.vsidxBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/FileContentIndex/88bc2f26-ce1c-4249-87a5-2bd904ae27a0.vsidxBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/FileContentIndex/cf5dadeb-485c-40cd-94ef-584f94c6d93e.vsidxBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/FileContentIndex/df643222-03a4-4261-a4e4-e3c736cb5a96.vsidxBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/FileContentIndex/e473867b-6c5f-44c1-ba98-adecea06d78b.vsidxBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/.vs/WIDESEAWCS_Server/v17/.suoBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_IBasicInfoService/obj/Release/net6.0/WIDESEAWCS_IBasicInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/ISys_LogService.cs
@@ -1,14 +1,238 @@ using System; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_ISystemServices { #region å®ä½ç±» public class DirInfo { /// <summary> /// å½åè·¯å¾ /// </summary> public string dirPath { get; set; } /// <summary> /// å½ååç§° /// </summary> public string dirName { get; set; } /// <summary> /// åæä»¶ /// </summary> public List<FileDataInfo> files { get; set; } /// <summary> /// åæä»¶å¤¹ /// </summary> public List<DirInfo> dirs { get; set; } } public class FileDataInfo { public string filePath { get; set; } public string fileName { get; set; } public long fileSize { get; set; } } public class GetLogParm { /// <summary> /// æä»¶å°å /// </summary> public string path; /// <summary> /// 读åè¿åº¦ /// </summary> public float percent; /// <summary> /// æå¤§è¯»åå¤§å° /// </summary> public double maxsize_KB = 20; /// <summary> /// å½åèµ·å§ä½ç½® /// </summary> public long topStartPos = 0; } #endregion public interface ISys_LogService : IService<Sys_Log> { /// <summary> /// éå½è·åæä»¶ä¿¡æ¯ /// </summary> /// <param name="dirPath"></param> /// <returns></returns> private DirInfo GetDirInfo(string dirPath) { //å½åæä»¶å¤¹ var dirInfo = new DirInfo(); dirInfo.dirName = Path.GetFileName(dirPath); //åæä»¶ List<FileDataInfo> files = new List<FileDataInfo>(); foreach (var file in Directory.GetFiles(dirPath)) { files.Add(new FileDataInfo() { filePath = file, fileName = Path.GetFileName(file) }); } //åæä»¶å¤¹ var dirs = Directory.GetDirectories(dirPath); dirInfo.dirs = new List<DirInfo>(); foreach (var dir in dirs) { dirInfo.dirs.Add(GetDirInfo(dir)); } //åæä»¶å¤¹ï¼ä¸åç®å½åå¹¶ foreach (var file in files) { dirInfo.dirs.Add(new DirInfo() { dirPath = file.filePath, dirName = file.fileName }); } return dirInfo; } /// <summary> /// è·åæ¥å¿æä»¶å表 /// </summary> /// <returns></returns> public WebResponseContent GetLogList() { WebResponseContent content = new WebResponseContent(); string path = System.Environment.CurrentDirectory + "/log"; if (!System.IO.Directory.Exists(path)) { return content.Error("ææ æ¥å¿æä»¶"); } content.Data = GetDirInfo(path); content.OK(); return content; } /// <summary> /// è·åæä»¶å 容 /// </summary> /// <param name="parm"></param> /// <returns></returns> public WebResponseContent GetLogData(GetLogParm parm) { WebResponseContent content = new WebResponseContent(); string res = ""; //æ¯å¦è¯»åå°æå bool isEnd = false; long startIndex = 0; //æä»¶å¤§å° long len = 0; try { if (!System.IO.File.Exists(parm.path)) { throw new Exception($"æä»¶{parm.path}ä¸åå¨ï¼"); } using (FileStream fs = new FileStream(parm.path, FileMode.Open, FileAccess.Read, FileShare.Read)) { //æå¤§è¯»åå¤§å° int maxsize = (int)(1024 * parm.maxsize_KB); len = fs.Length; long startPos = (long)(len * (parm.percent / 100));//èµ·å§ä½ç½® long readLen = len - startPos;//读åé¿åº¦ //ååå è½½ if (parm.topStartPos != 0) { startPos = parm.topStartPos - maxsize; if (startPos < 0) { //已读å°èµ·å§ä½ startPos = 0; readLen = parm.topStartPos; } else { readLen = maxsize; } } else { //读å大尿¯å¦è¶ åºæå¤§é¿åº¦ if (readLen > maxsize) { readLen = maxsize; } else { isEnd = true; } } //å è½½100%ï¼ææå¤§å 容读å if (parm.percent == 100) { if (len < maxsize) { startPos = 0; readLen = len; } else { startPos = len - maxsize; readLen = maxsize; } } fs.Seek(startPos, SeekOrigin.Begin); var buffer = new byte[readLen]; fs.Read(buffer, 0, (int)readLen); startIndex = startPos; if (startPos != 0 && (parm.percent != 0 || parm.topStartPos != 0)) { //䏿¯ä»å¤´å è½½ï¼å é¤å¯è½ä¸å®æ´ç第ä¸è¡ int skipCount = 0; for (int i = 0; i < buffer.Length; i++) { if (buffer[i] == 10) { skipCount = i; break; } } if (skipCount != 0) { //廿æ¢è¡ skipCount++; //䏿¬¡è¯»ååå»¶ startIndex += skipCount; } res = Encoding.UTF8.GetString(buffer.Skip(skipCount).ToArray()); } else { res = Encoding.UTF8.GetString(buffer); } } } catch (Exception ex) { return content.Error(ex.Message); } return content.OK(data: new { content = res, isEnd, startIndex, len }); } } } ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/bin/Debug/net6.0/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/bin/Debug/net6.0/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/bin/Release/net6.0/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/bin/Release/net6.0/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Debug/net6.0/WIDESEAWCS_ISystemServices.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Debug/net6.0/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Debug/net6.0/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Debug/net6.0/ref/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Debug/net6.0/refint/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Release/net6.0/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Release/net6.0/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Release/net6.0/ref/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemServices/obj/Release/net6.0/refint/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Syslog/dt_logController.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,37 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_ISystemServices; using WIDESEAWCS_ITaskInfoService; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_Server.Controllers.Syslog { [Route("api/dt_log")] [ApiController] public class dt_logController : ApiBaseController<ISys_LogService, Sys_Log> { private readonly IHttpContextAccessor _httpContextAccessor; public dt_logController(ISys_LogService service, IHttpContextAccessor httpContextAccessor) : base(service) { _httpContextAccessor = httpContextAccessor; } [HttpPost, Route("GetLogList"), AllowAnonymous] public WebResponseContent GetLogList() { return Service.GetLogList(); } [HttpPost, Route("GetLogData"), AllowAnonymous] public WebResponseContent GetLogData([FromBody] GetLogParm parm) { return Service.GetLogData(parm); } } } ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Program.cs
@@ -61,7 +61,7 @@ builder.Services.AddHttpContextSetup(); builder.Services.AddHostedService<QuartzJobHostedService>(); builder.Services.AddHostedService<QuartzJobHostedService>();//ä»»å¡è°åº¦ å¯å¨æå¡ builder.Services.AddMvc(options => { ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Properties/PublishProfiles/FolderProfile.pubxml.user
@@ -4,7 +4,7 @@ --> <Project> <PropertyGroup> <History>True|2024-12-07T07:49:46.5388885Z;True|2024-12-07T15:46:11.6626701+08:00;True|2024-12-07T15:42:02.2259028+08:00;True|2024-12-06T15:33:20.9138822+08:00;True|2024-12-05T14:23:06.4348342+08:00;True|2024-12-05T13:36:58.8542212+08:00;True|2024-12-05T10:07:56.3111164+08:00;True|2024-12-05T09:55:54.2652890+08:00;True|2024-12-04T15:56:34.9789719+08:00;True|2024-12-04T14:31:10.7799578+08:00;True|2024-12-02T16:23:40.6525322+08:00;True|2024-12-02T15:06:33.8398324+08:00;True|2024-12-02T09:55:44.1713285+08:00;True|2024-11-29T15:05:47.9497725+08:00;True|2024-11-28T11:00:49.8541290+08:00;True|2024-11-27T16:25:44.2279053+08:00;True|2024-11-27T16:23:10.3212041+08:00;True|2024-11-26T16:12:09.6441006+08:00;True|2024-11-25T15:56:05.5113682+08:00;True|2024-11-23T18:06:54.9268962+08:00;True|2024-11-23T15:51:50.1591773+08:00;True|2024-11-23T15:15:06.3720464+08:00;True|2024-11-23T09:48:55.7756397+08:00;True|2024-11-22T15:32:46.3942559+08:00;True|2024-11-22T15:02:47.9591615+08:00;True|2024-11-22T09:54:53.3849366+08:00;True|2024-11-21T09:21:57.2736424+08:00;True|2024-11-21T08:58:43.5819015+08:00;True|2024-11-21T08:55:10.4316119+08:00;True|2024-11-20T15:23:35.7301192+08:00;True|2024-11-20T15:09:01.0759113+08:00;True|2024-11-20T13:38:30.8480303+08:00;True|2024-11-20T11:51:52.1077333+08:00;True|2024-11-20T09:47:32.7369297+08:00;True|2024-11-20T09:23:04.3323615+08:00;True|2024-11-20T08:59:02.5867718+08:00;True|2024-11-19T16:59:32.6699681+08:00;True|2024-11-19T16:30:57.2361691+08:00;True|2024-11-18T13:44:52.7363955+08:00;True|2024-11-18T11:51:14.1304717+08:00;True|2024-11-18T09:54:17.2374656+08:00;True|2024-11-18T09:29:51.6325764+08:00;True|2024-11-16T11:58:14.5931276+08:00;True|2024-11-15T11:32:41.4603659+08:00;True|2024-11-15T10:59:45.9850927+08:00;True|2024-11-15T10:50:34.6323216+08:00;True|2024-11-15T09:19:20.2734979+08:00;True|2024-11-14T15:28:21.0515205+08:00;True|2024-11-14T13:41:24.1909438+08:00;True|2024-11-14T13:40:32.9127786+08:00;True|2024-11-14T11:07:41.5990520+08:00;True|2024-11-14T09:22:59.4178473+08:00;True|2024-11-13T15:24:13.8062577+08:00;True|2024-11-13T13:52:31.1777239+08:00;True|2024-11-13T13:28:24.0702676+08:00;True|2024-11-13T12:12:42.9868238+08:00;True|2024-11-13T12:10:25.2831417+08:00;True|2024-11-12T15:27:03.9792708+08:00;False|2024-11-12T15:26:08.5481600+08:00;</History> <History>True|2024-12-08T11:44:59.3607897Z;True|2024-12-08T19:40:36.3774171+08:00;True|2024-12-08T19:23:29.7403370+08:00;True|2024-12-08T19:20:07.2145504+08:00;True|2024-12-07T15:49:46.5388885+08:00;True|2024-12-07T15:46:11.6626701+08:00;True|2024-12-07T15:42:02.2259028+08:00;True|2024-12-06T15:33:20.9138822+08:00;True|2024-12-05T14:23:06.4348342+08:00;True|2024-12-05T13:36:58.8542212+08:00;True|2024-12-05T10:07:56.3111164+08:00;True|2024-12-05T09:55:54.2652890+08:00;True|2024-12-04T15:56:34.9789719+08:00;True|2024-12-04T14:31:10.7799578+08:00;True|2024-12-02T16:23:40.6525322+08:00;True|2024-12-02T15:06:33.8398324+08:00;True|2024-12-02T09:55:44.1713285+08:00;True|2024-11-29T15:05:47.9497725+08:00;True|2024-11-28T11:00:49.8541290+08:00;True|2024-11-27T16:25:44.2279053+08:00;True|2024-11-27T16:23:10.3212041+08:00;True|2024-11-26T16:12:09.6441006+08:00;True|2024-11-25T15:56:05.5113682+08:00;True|2024-11-23T18:06:54.9268962+08:00;True|2024-11-23T15:51:50.1591773+08:00;True|2024-11-23T15:15:06.3720464+08:00;True|2024-11-23T09:48:55.7756397+08:00;True|2024-11-22T15:32:46.3942559+08:00;True|2024-11-22T15:02:47.9591615+08:00;True|2024-11-22T09:54:53.3849366+08:00;True|2024-11-21T09:21:57.2736424+08:00;True|2024-11-21T08:58:43.5819015+08:00;True|2024-11-21T08:55:10.4316119+08:00;True|2024-11-20T15:23:35.7301192+08:00;True|2024-11-20T15:09:01.0759113+08:00;True|2024-11-20T13:38:30.8480303+08:00;True|2024-11-20T11:51:52.1077333+08:00;True|2024-11-20T09:47:32.7369297+08:00;True|2024-11-20T09:23:04.3323615+08:00;True|2024-11-20T08:59:02.5867718+08:00;True|2024-11-19T16:59:32.6699681+08:00;True|2024-11-19T16:30:57.2361691+08:00;True|2024-11-18T13:44:52.7363955+08:00;True|2024-11-18T11:51:14.1304717+08:00;True|2024-11-18T09:54:17.2374656+08:00;True|2024-11-18T09:29:51.6325764+08:00;True|2024-11-16T11:58:14.5931276+08:00;True|2024-11-15T11:32:41.4603659+08:00;True|2024-11-15T10:59:45.9850927+08:00;True|2024-11-15T10:50:34.6323216+08:00;True|2024-11-15T09:19:20.2734979+08:00;True|2024-11-14T15:28:21.0515205+08:00;True|2024-11-14T13:41:24.1909438+08:00;True|2024-11-14T13:40:32.9127786+08:00;True|2024-11-14T11:07:41.5990520+08:00;True|2024-11-14T09:22:59.4178473+08:00;True|2024-11-13T15:24:13.8062577+08:00;True|2024-11-13T13:52:31.1777239+08:00;True|2024-11-13T13:28:24.0702676+08:00;True|2024-11-13T12:12:42.9868238+08:00;True|2024-11-13T12:10:25.2831417+08:00;True|2024-11-12T15:27:03.9792708+08:00;False|2024-11-12T15:26:08.5481600+08:00;</History> <LastFailureDetails /> <_PublishTargetUrl>F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WCS\WIDESEAWCS_Server\WIDESEAWCS_Server\bin\Release\net6.0\publish\</_PublishTargetUrl> </PropertyGroup> ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/Log_PLCReadWrite/1ºÅ¶Ñ¶â»ú/Logs_20241029152000.txt
@@ -71055,3 +71055,534 @@ [ä¿¡æ¯] 2024-12-07 14:48:51.596 Thread:[003] 1å·å åæº : PLCè¿æ¥æåï¼IPï¼ã10.50.11.79ãï¼Portï¼ã102ã [ä¿¡æ¯] 2024-12-07 15:34:44.792 Thread:[005] 1å·å åæº : PLCè¿æ¥æåï¼IPï¼ã10.50.11.79ãï¼Portï¼ã102ã [é误] 2024-12-08 18:27:50.559 Thread:[011] 1å·å åæº : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.79ãï¼Portï¼ã102ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:28:00.787 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:11.444 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:22.106 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:32.751 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:43.391 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:53.405 Thread:[022] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:03.518 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:13.543 Thread:[022] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:23.618 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:33.656 Thread:[029] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:43.931 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:54.000 Thread:[024] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:04.105 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:14.298 Thread:[024] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:24.354 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:34.453 Thread:[024] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:44.662 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:54.764 Thread:[011] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:04.920 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:14.943 Thread:[024] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:25.022 Thread:[013] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [é误] 2024-12-08 18:31:54.594 Thread:[014] 1å·å åæº : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.79ãï¼Portï¼ã102ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:32:04.890 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:15.469 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:26.149 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:36.803 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:47.438 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:57.479 Thread:[029] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:07.591 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:17.610 Thread:[029] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:27.631 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:37.745 Thread:[030] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:47.844 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:57.971 Thread:[029] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:08.081 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:18.210 Thread:[029] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:28.240 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:38.282 Thread:[029] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:48.314 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:58.441 Thread:[029] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:08.482 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:18.524 Thread:[036] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:28.638 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:38.754 Thread:[036] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:48.808 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:58.885 Thread:[029] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:08.949 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:19.010 Thread:[035] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:29.098 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:39.188 Thread:[030] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:49.245 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:59.337 Thread:[034] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:09.404 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:19.447 Thread:[034] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:29.473 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:39.591 Thread:[035] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:49.701 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:59.760 Thread:[035] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:09.823 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:19.860 Thread:[031] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:29.867 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:39.973 Thread:[034] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:50.075 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:00.195 Thread:[034] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:10.206 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:20.246 Thread:[034] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:30.261 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:40.290 Thread:[036] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:50.327 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:00.367 Thread:[036] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:10.402 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:20.425 Thread:[036] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:30.448 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:40.485 Thread:[036] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:50.601 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:00.642 Thread:[030] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:10.671 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:20.790 Thread:[030] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:30.812 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:40.909 Thread:[030] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:50.979 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:01.017 Thread:[030] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:11.042 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:21.054 Thread:[034] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:31.069 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:41.123 Thread:[030] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:51.238 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:01.360 Thread:[030] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:11.373 Thread:[008] 1å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [é误] 2024-12-08 19:02:53.220 Thread:[012] 1å·å åæº : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.79ãï¼Portï¼ã102ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.79:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/Log_PLCReadWrite/2ºÅ¶Ñ¶â»ú/Logs_20241029153638.txt
@@ -23263,3 +23263,521 @@ [ä¿¡æ¯] 2024-12-07 13:34:14.808 Thread:[011] 2å·å åæº : PLCè¿æ¥æåï¼IPï¼ã10.50.11.69ãï¼Portï¼ã102ã [ä¿¡æ¯] 2024-12-07 14:48:51.653 Thread:[003] 2å·å åæº : PLCè¿æ¥æåï¼IPï¼ã10.50.11.69ãï¼Portï¼ã102ã [ä¿¡æ¯] 2024-12-07 15:34:44.838 Thread:[005] 2å·å åæº : PLCè¿æ¥æåï¼IPï¼ã10.50.11.69ãï¼Portï¼ã102ã [é误] 2024-12-08 18:28:00.682 Thread:[011] 2å·å åæº : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.69ãï¼Portï¼ã102ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:28:10.821 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:21.454 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:32.048 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:42.742 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:52.842 Thread:[011] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:02.905 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:13.029 Thread:[011] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:23.130 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:33.264 Thread:[007] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:43.749 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:53.960 Thread:[022] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:04.063 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:14.176 Thread:[023] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:24.280 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:34.485 Thread:[026] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:44.616 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:54.764 Thread:[026] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:05.016 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:15.172 Thread:[007] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:25.238 Thread:[016] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [é误] 2024-12-08 18:32:04.712 Thread:[014] 2å·å åæº : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.69ãï¼Portï¼ã102ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:32:14.824 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:25.499 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:36.179 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:46.785 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:56.849 Thread:[030] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:06.939 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:16.970 Thread:[030] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:27.089 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:37.196 Thread:[031] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:47.304 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:57.421 Thread:[036] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:07.531 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:17.567 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:27.595 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:37.632 Thread:[035] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:47.671 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:57.787 Thread:[036] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:07.826 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:17.876 Thread:[035] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:27.992 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:38.102 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:48.166 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:58.232 Thread:[031] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:08.304 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:18.362 Thread:[031] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:28.438 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:38.534 Thread:[031] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:48.596 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:58.686 Thread:[031] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:08.756 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:18.802 Thread:[029] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:28.828 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:38.946 Thread:[030] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:49.059 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:59.105 Thread:[030] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:09.158 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:19.208 Thread:[036] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:29.217 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:39.331 Thread:[036] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:49.431 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:59.551 Thread:[032] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:09.560 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:19.594 Thread:[032] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:29.625 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:39.645 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:49.676 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:59.719 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:09.755 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:19.783 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:29.802 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:39.831 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:49.843 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:59.888 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:09.910 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:20.035 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:30.059 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:40.093 Thread:[034] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:50.113 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:00.144 Thread:[035] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:10.174 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:20.196 Thread:[035] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:30.314 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:40.368 Thread:[035] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:50.484 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:00.502 Thread:[031] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãBooleanãï¼å°åï¼ãDB106.36.1ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:10.620 Thread:[025] 2å·å åæº : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãDB106.2.0ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.69:102 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.SiemensS7.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/Log_PLCReadWrite/ÊäËÍÏßA/Logs_20241111101003.txt
@@ -51288,3 +51288,485 @@ é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [é误] 2024-12-08 18:28:31.072 Thread:[011] è¾é线A : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.19ãï¼Portï¼ã44818ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:28:42.345 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:52.388 Thread:[007] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:02.461 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:12.595 Thread:[029] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:22.671 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:32.805 Thread:[026] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:43.792 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:53.935 Thread:[023] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:03.988 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:14.146 Thread:[022] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:24.281 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:34.485 Thread:[029] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:44.620 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:54.764 Thread:[022] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:04.966 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:15.155 Thread:[026] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:25.281 Thread:[021] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [é误] 2024-12-08 18:32:35.223 Thread:[014] è¾é线A : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.19ãï¼Portï¼ã44818ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:32:46.134 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:56.191 Thread:[034] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:06.302 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:16.426 Thread:[034] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:26.547 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:36.655 Thread:[034] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:46.768 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:56.880 Thread:[034] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:06.992 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:17.031 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:27.077 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:37.179 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:47.231 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:57.251 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:07.287 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:17.332 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:27.346 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:37.439 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:47.510 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:57.576 Thread:[030] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:07.654 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:17.717 Thread:[036] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:27.785 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:37.869 Thread:[029] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:47.969 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:58.026 Thread:[035] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:08.104 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:18.147 Thread:[030] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:28.184 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:38.303 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:48.412 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:58.455 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:08.507 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:18.643 Thread:[032] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:28.674 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:38.789 Thread:[035] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:48.890 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:59.015 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:09.022 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:19.057 Thread:[036] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:29.071 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:39.104 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:49.135 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:59.181 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:09.211 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:19.238 Thread:[035] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:29.265 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:39.292 Thread:[030] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:49.309 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:59.340 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:09.371 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:19.513 Thread:[031] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:29.533 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:39.549 Thread:[036] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:49.578 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:59.596 Thread:[032] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:09.638 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:19.656 Thread:[038] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:29.668 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:39.726 Thread:[038] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:49.836 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:59.856 Thread:[038] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_A._02_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:09.974 Thread:[014] è¾é线A : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãInt16ãï¼å°åï¼ãWCS_PLC_A._03_WCS_TYPEãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.19:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/Log_PLCReadWrite/ÊäËÍÏßB/Logs_20241113180159.txt
@@ -75230,3 +75230,509 @@ [ä¿¡æ¯] 2024-12-07 13:34:14.850 Thread:[011] è¾é线B : PLCè¿æ¥æåï¼IPï¼ã10.50.11.18ãï¼Portï¼ã44818ã [ä¿¡æ¯] 2024-12-07 14:48:51.680 Thread:[003] è¾é线B : PLCè¿æ¥æåï¼IPï¼ã10.50.11.18ãï¼Portï¼ã44818ã [ä¿¡æ¯] 2024-12-07 15:34:44.864 Thread:[005] è¾é线B : PLCè¿æ¥æåï¼IPï¼ã10.50.11.18ãï¼Portï¼ã44818ã [é误] 2024-12-08 18:28:10.816 Thread:[011] è¾é线B : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.18ãï¼Portï¼ã44818ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:28:20.948 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:31.660 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:42.302 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:52.388 Thread:[023] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:02.461 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:12.614 Thread:[026] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:22.671 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:32.805 Thread:[023] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:43.749 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:53.874 Thread:[026] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:04.047 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:14.146 Thread:[007] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:24.281 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:34.535 Thread:[007] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:44.662 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:54.764 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:04.957 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:15.172 Thread:[022] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:25.255 Thread:[017] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [é误] 2024-12-08 18:32:14.925 Thread:[014] è¾é线B : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.18ãï¼Portï¼ã44818ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:32:25.091 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:35.768 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:46.380 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:56.521 Thread:[031] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:06.628 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:16.748 Thread:[031] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:26.866 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:36.989 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:47.087 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:57.216 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:07.319 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:17.417 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:27.491 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:37.511 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:47.559 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:57.575 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:07.610 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:17.654 Thread:[034] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:27.670 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:37.771 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:47.830 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:57.901 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:07.981 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:18.052 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:28.116 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:38.225 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:48.270 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:58.350 Thread:[036] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:08.436 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:18.475 Thread:[036] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:28.509 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:38.628 Thread:[036] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:48.741 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:58.777 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:08.836 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:18.873 Thread:[030] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:28.895 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:39.006 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:49.108 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:59.233 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:09.240 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:19.271 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:29.287 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:39.322 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:49.354 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:59.399 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:09.430 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:19.454 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:29.480 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:39.509 Thread:[031] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:49.523 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:59.564 Thread:[035] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:09.588 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:19.714 Thread:[032] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:29.745 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:39.782 Thread:[031] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:49.802 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:59.920 Thread:[038] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:09.982 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:20.084 Thread:[036] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:30.096 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:40.154 Thread:[036] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:50.265 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:00.290 Thread:[036] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_B._03_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:10.404 Thread:[024] è¾é线B : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_B._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.18:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/Log_PLCReadWrite/ÊäËÍÏßD/Logs_20241120091220.txt
@@ -7354,3 +7354,497 @@ æ°æ®åå ¥åè¯»åæ ¡éªæåï¼å°åï¼ãWCS_PLC_D._03_WCS_TOãï¼åå ¥çæ°æ®ï¼ã1ãï¼è¯»åçæ°æ®ï¼ã1ã [ä¿¡æ¯] 2024-12-07 15:34:44.877 Thread:[005] è¾é线D : PLCè¿æ¥æåï¼IPï¼ã10.50.11.17ãï¼Portï¼ã44818ã [é误] 2024-12-08 18:28:20.929 Thread:[011] è¾é线D : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.17ãï¼Portï¼ã44818ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:28:32.048 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:42.742 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:28:52.786 Thread:[024] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:02.896 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:13.042 Thread:[007] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:23.116 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:33.264 Thread:[011] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:43.749 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:29:53.819 Thread:[011] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:03.995 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:14.208 Thread:[026] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:24.280 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:34.625 Thread:[023] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:44.616 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:30:54.764 Thread:[007] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:04.985 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:14.943 Thread:[029] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:31:25.022 Thread:[019] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [é误] 2024-12-08 18:32:25.072 Thread:[014] è¾é线D : PLCè¿æ¥å¤±è´¥ï¼IPï¼ã10.50.11.17ãï¼Portï¼ã44818ãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã [è´å½] 2024-12-08 18:32:35.656 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:46.244 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:32:56.290 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:06.411 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:16.535 Thread:[035] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:26.653 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:36.759 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:46.880 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:33:56.995 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:07.102 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:17.153 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:27.166 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:37.302 Thread:[036] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:47.343 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:34:57.360 Thread:[030] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:07.400 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:17.443 Thread:[030] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:27.561 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:37.681 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:47.733 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:35:57.796 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:07.872 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:17.930 Thread:[034] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:28.011 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:38.093 Thread:[034] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:48.177 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:36:58.243 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:08.324 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:18.364 Thread:[035] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:28.394 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:38.516 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:48.625 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:37:58.676 Thread:[034] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:08.722 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:18.771 Thread:[034] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:28.784 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:38.891 Thread:[030] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:48.997 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:38:59.127 Thread:[030] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:09.134 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:19.164 Thread:[031] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:29.180 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:39.214 Thread:[030] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:49.245 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:39:59.293 Thread:[030] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:09.326 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:19.347 Thread:[031] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:29.374 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:39.401 Thread:[035] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:49.419 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:40:59.452 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:09.478 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:19.513 Thread:[036] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:29.544 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:39.656 Thread:[035] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:49.685 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:41:59.708 Thread:[036] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:09.756 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:19.871 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:29.886 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:39.939 Thread:[032] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:42:50.051 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:00.075 Thread:[034] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãByteãï¼å°åï¼ãPLC_WCS_D._01_PLC_EVENTãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ [è´å½] 2024-12-08 18:43:10.190 Thread:[027] è¾é线D : æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã : é误信æ¯ï¼æ°æ®è¯»åå¤±è´¥ï¼æ°æ®ç±»åï¼ãStringãï¼å°åï¼ãPLC_WCS_D._01_PLC_LPNãï¼é误信æ¯ï¼ãè¿æ¥ 10.50.11.17:44818 失败ï¼è¶ æ¶æ¶é´ä¸º 10000 msã é误æºï¼WIDESEAWCS_Communicator éè¯¯å æ ï¼ at WIDESEAWCS_Communicator.AllenBrandlyEtherNetCommunicator.GetContent[T](OperateResult`1 operateResult, String address) é误类åï¼WIDESEAWCS_Communicator.CommunicationException éè¯¯æ¹æ³ï¼System.Object GetContent[T](HslCommunication.OperateResult`1[T], System.String) /=================================================[ Exception ]================================================/ ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_Server.deps.json
@@ -2180,7 +2180,7 @@ "WIDESEAWCS_ITaskInfoService": "1.0.0" }, "runtime": { "WIDESEAWCS_TaskInfoService.dll": {} "WIDESEAWCs_TaskInfoService.dll": {} } }, "WIDESEAWCS_Tasks/1.0.0": { ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_Server.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_SystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_SystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/WIDESEAWCS_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Debug/net6.0/appsettings.json
@@ -1,5 +1,5 @@ { //"urls": "http://*:9291", //webæå¡ç«¯å£ï¼å¦æç¨IISé¨ç½²ï¼æè¿ä¸ªå»æ "urls": "http://*:9291", //webæå¡ç«¯å£ï¼å¦æç¨IISé¨ç½²ï¼æè¿ä¸ªå»æ "Logging": { "LogLevel": { "Default": "Information", @@ -21,7 +21,7 @@ "MainDB": "DB_WIDESEA", //å½å项ç®ç主åºï¼æå¯¹åºçè¿æ¥å符串çEnabledå¿ é¡»ä¸ºtrue //è¿æ¥å符串 //"ConnectionString": "HTI6FB1H05Krd07mNm9yBCNhofW6edA5zLs9TY~MNthRYW3kn0qKbMIsGp~3yyPDF1YZUCPBQx8U0Jfk4PH~ajNFXVIwlH85M3F~v_qKYQ3CeAz3q1mLVDn8O5uWt1~3Ut2V3KRkEwYHvW2oMDN~QIDXPxDgXN0R2oTIhc9dNu7QNaLEknblqmHhjaNSSpERdDVZIgHnMKejU_SL49tralBkZmDNi0hmkbL~837j1NWe37u9fJKmv91QPb~16JsuI9uu0EvNZ06g6PuZfOSAeFH9GMMIZiketdcJG3tHelo=", "ConnectionString": "Data Source=10.50.11.65;Initial Catalog=WIDESEAWCS_JSLK;User ID=sa;Password=123456;Integrated Security=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False", "ConnectionString": "Data Source=.;Initial Catalog=WIDESEAWCS_JSLK;User ID=sa;Password=123456;Integrated Security=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False", //è·¨å "Cors": { "PolicyName": "CorsIpAccess", //çç¥åç§° ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/WIDESEAWCS_Server.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/WIDESEAWCS_SystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/WIDESEAWCS_SystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/publish/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/publish/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/publish/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/publish/WIDESEAWCS_Server.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/publish/WIDESEAWCS_SystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/bin/Release/net6.0/publish/WIDESEAWCS_SystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Debug/net6.0/WIDESEAWCS_Server.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Debug/net6.0/WIDESEAWCS_Server.csproj.CoreCompileInputs.cache
@@ -1 +1 @@ 7f9f9d20a6828ce289934b855abdd2f711260cdd ce30126a3d3eff424cf5aeced806c13ddcaf7ebe ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Debug/net6.0/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Debug/net6.0/WIDESEAWCS_Server.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Debug/net6.0/ref/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Debug/net6.0/refint/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/PubTmp/Out/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/PubTmp/Out/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/PubTmp/Out/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/PubTmp/Out/WIDESEAWCS_Server.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/PubTmp/Out/WIDESEAWCS_SystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/PubTmp/Out/WIDESEAWCS_SystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/WIDESEAWCS_Server.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/WIDESEAWCS_Server.csproj.CoreCompileInputs.cache
@@ -1 +1 @@ e17ef18b27a3c110e61d0e4d8f7ba67d8b56b8a2 9595fa07ff531416514854b21fb1a3b90b9a3071 ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/WIDESEAWCS_Server.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/ref/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/obj/Release/net6.0/refint/WIDESEAWCS_Server.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/bin/Debug/net6.0/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/bin/Debug/net6.0/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/bin/Debug/net6.0/WIDESEAWCS_SystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/bin/Debug/net6.0/WIDESEAWCS_SystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/bin/Release/net6.0/WIDESEAWCS_ISystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/bin/Release/net6.0/WIDESEAWCS_ISystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/bin/Release/net6.0/WIDESEAWCS_SystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/bin/Release/net6.0/WIDESEAWCS_SystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/obj/Debug/net6.0/WIDESEAWCS_SystemServices.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/obj/Debug/net6.0/WIDESEAWCS_SystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/obj/Debug/net6.0/WIDESEAWCS_SystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/obj/Release/net6.0/WIDESEAWCS_SystemServices.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/obj/Release/net6.0/WIDESEAWCS_SystemServices.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/obj/Release/net6.0/WIDESEAWCS_SystemServices.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/obj/Debug/net6.0/WIDESEAWCS_TaskInfoService.AssemblyInfo.cs
@@ -11,12 +11,12 @@ using System; using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEAWCs_TaskInfoService")] [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEAWCS_TaskInfoService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEAWCs_TaskInfoService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEAWCs_TaskInfoService")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEAWCS_TaskInfoService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEAWCS_TaskInfoService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] // ç± MSBuild WriteCodeFragment ç±»çæã ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/obj/Debug/net6.0/WIDESEAWCS_TaskInfoService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 696e07e336e90b059d5a69ceac1b59c1567636d6 0c89bb1cae87ea43ac260fbf353d127eb2b5c7af ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/obj/Debug/net6.0/WIDESEAWCS_TaskInfoService.GeneratedMSBuildEditorConfig.editorconfig
@@ -7,5 +7,5 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = WIDESEAWCs_TaskInfoService build_property.ProjectDir = F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WCS\WIDESEAWCS_Server\WIDESEAWCs_TaskInfoService\ build_property.RootNamespace = WIDESEAWCS_TaskInfoService build_property.ProjectDir = F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WCS\WIDESEAWCS_Server\WIDESEAWCS_TaskInfoService\ ´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/bin/Debug/net6.0/WIDESEAWCS_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/bin/Debug/net6.0/WIDESEAWCS_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/obj/Debug/net6.0/WIDESEAWCS_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/obj/Debug/net6.0/WIDESEAWCS_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/ProjectEvaluation/widesea_wmsserver.metadata.v7.binBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/ProjectEvaluation/widesea_wmsserver.projects.v7.binBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/DesignTimeBuild/.dtbcache.v2Binary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/0102e374-d9f8-47a0-8b23-1d421d26cc39.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/80e19484-c606-4354-939a-bc6bff1bef7b.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/eaf6a2cc-df92-4663-84f5-7b7ac7127e92.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/ee7a0dcd-a958-41b7-8706-df7ac4fc59a7.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.futdcache.v2Binary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.suoBinary files differ