Commit 797d7d1f 张东亮

添加重连,通过IP判断客户端

1 个父辈 7a189a4d
正在显示 30 个修改的文件 包含 1265 行增加342 行删除
using AGVControl; using AGVControl;
using System; using System;
using System.Collections.Concurrent;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using System.Net; using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using System.Threading; using System.Threading;
...@@ -92,7 +94,7 @@ namespace BLL ...@@ -92,7 +94,7 @@ namespace BLL
int idx = FindClient(ip); int idx = FindClient(ip);
if (idx == -1) if (idx == -1)
{ {
Common.LogInfo("ReadyEnter 没有找到" + nodeName + " " + ip); Common.LogInfo("ReadyEnter 没有找到" + nodeName);
return false; return false;
} }
else else
...@@ -106,12 +108,12 @@ namespace BLL ...@@ -106,12 +108,12 @@ namespace BLL
else else
{ {
TimeSpan timeSpan = DateTime.Now - readyEnterTime[nodeName]; TimeSpan timeSpan = DateTime.Now - readyEnterTime[nodeName];
if (timeSpan.TotalSeconds < 45) if (timeSpan.TotalSeconds < 15)
{ {
Common.log.Debug(nodeName + " " + ip + " ReadyEnter 45秒内不重复发送"); Common.log.Debug(nodeName + " ReadyEnter 15秒内不重复发送");
return false; return false;
} }
else if (timeSpan.TotalMinutes > 2) else if (timeSpan.TotalMinutes > 1)
{ {
readyEnterTime[nodeName] = DateTime.Now; readyEnterTime[nodeName] = DateTime.Now;
} }
...@@ -132,7 +134,7 @@ namespace BLL ...@@ -132,7 +134,7 @@ namespace BLL
int idx = FindClient(ip); int idx = FindClient(ip);
if (idx == -1) if (idx == -1)
{ {
Common.LogInfo("ReadyLeave 没有找到" + nodeName + " " + ip); Common.LogInfo("ReadyLeave 没有找到" + nodeName);
return false; return false;
} }
else else
...@@ -148,10 +150,10 @@ namespace BLL ...@@ -148,10 +150,10 @@ namespace BLL
TimeSpan timeSpan = DateTime.Now - readyLeaveTime[nodeName]; TimeSpan timeSpan = DateTime.Now - readyLeaveTime[nodeName];
if (timeSpan.TotalSeconds < 45) if (timeSpan.TotalSeconds < 45)
{ {
Common.log.Debug(nodeName + " " + ip + " ReadyLeave 45秒内不重复发送"); Common.log.Debug(nodeName + " ReadyLeave 45秒内不重复发送");
return false; return false;
} }
else if (timeSpan.TotalMinutes > 3) else if (timeSpan.TotalMinutes > 1)
{ {
readyLeaveTime[nodeName] = DateTime.Now; readyLeaveTime[nodeName] = DateTime.Now;
} }
...@@ -172,7 +174,7 @@ namespace BLL ...@@ -172,7 +174,7 @@ namespace BLL
int idx = FindClient(ip); int idx = FindClient(ip);
if (idx == -1) if (idx == -1)
{ {
Common.LogInfo("FinishEnter 没有找到" + nodeName + " " + ip); Common.LogInfo("FinishEnter 没有找到" + nodeName);
return false; return false;
} }
else else
...@@ -190,7 +192,7 @@ namespace BLL ...@@ -190,7 +192,7 @@ namespace BLL
int idx = FindClient(ip); int idx = FindClient(ip);
if (idx == -1) if (idx == -1)
{ {
Common.LogInfo("FinishLeave 没有找到" + nodeName + " " + ip); Common.LogInfo("FinishLeave 没有找到" + nodeName);
return false; return false;
} }
else else
...@@ -216,68 +218,26 @@ namespace BLL ...@@ -216,68 +218,26 @@ namespace BLL
if (!_loop) return; if (!_loop) return;
} }
foreach (ClientNode clientNode in Common.nodeInfo) for (int i = 0; i < Common.nodeInfo.Count; i++)
{ {
n = 0; try
while (n < 300) //每条产线间隔
{ {
Thread.Sleep(50); if (!_loop)
n += 50; break;
if (!_loop) return; Thread.Sleep(1000);
if (!Common.nodeInfo[i].IP.Equals(""))
Common.nodeInfo[i].Online = CheckIP(Common.nodeInfo[i].Name, Common.nodeInfo[i].IP);
NodeOnline?.Invoke(i);
NodeChanged?.Invoke(i);
} }
catch (Exception e)
int idx = FindClient(clientNode.IP);
if (idx == -1)
{
Common.log.Debug("KeepLive 没有找到" + clientNode.Name);
int index = Common.nodeInfo.IndexOf(clientNode);
Common.nodeInfo[index].Online = false;
continue;
}
else
{
if (!IsNeedKeepLive(clientNode.Name))
continue;
if (clientNode.StateEquals(eNodeStatus.None))
{
byte[] buff = new byte[] { 0X00, 0X00 };
int index = Common.nodeInfo.IndexOf(clientNode);
if (!Send(idx, buff))
{ {
Common.nodeInfo[index].Online = false; Common.log.Error("PingClient", e);
Common.log.Debug(clientNode.Name + " KeepLive 发送失败");
}
else
{
Common.nodeInfo[index].Online = true;
Common.log.Debug(clientNode.Name + " KeepLive 发送成功");
} }
} }
} }
NodeOnline?.Invoke(Common.nodeInfo.IndexOf(clientNode));
NodeChanged?.Invoke(Common.nodeInfo.IndexOf(clientNode));
}
//for (int i = 0; i < Common.nodeInfo.Count; i++)
//{
// try
// {
// if (!_loop)
// break;
// if (!Common.nodeInfo[i].IP.Equals(""))
// Common.nodeInfo[i].Online = CheckIP(Common.nodeInfo[i].Name, Common.nodeInfo[i].IP);
// NodeOnline?.Invoke(i);
// NodeChanged?.Invoke(i);
// }
// catch (Exception e)
// {
// Common.log.Error("PingClient", e);
// }
//}
}
} }
private bool IsNeedKeepLive(string name) private bool IsNeedKeepLive(string name)
...@@ -330,14 +290,14 @@ namespace BLL ...@@ -330,14 +290,14 @@ namespace BLL
Socket socket = _server.Accept(); //这边会暂停,不需要sleep Socket socket = _server.Accept(); //这边会暂停,不需要sleep
IPEndPoint ep = (IPEndPoint)socket.RemoteEndPoint; IPEndPoint ep = (IPEndPoint)socket.RemoteEndPoint;
Thread listen = new Thread(new ParameterizedThreadStart(ListenNet)); Thread listen = new Thread(new ParameterizedThreadStart(ListenNet));
//string ip = ep.Address.ToString(); string ip = ep.Address.ToString();
//if (ip == System.Configuration.ConfigurationManager.AppSettings["LocalIP"]) //if (ip == System.Configuration.ConfigurationManager.AppSettings["LocalIP"])
// ip += ":" + ep.Port; // ip += ":" + ep.Port;
//新的客户端 //新的客户端
Client client = new Client Client client = new Client
{ {
IP = ep.Address.ToString() + ":" + ep.Port, IP = ip,
Loop = true, Loop = true,
IsConn = true, IsConn = true,
Socket = socket, Socket = socket,
...@@ -346,15 +306,15 @@ namespace BLL ...@@ -346,15 +306,15 @@ namespace BLL
}; };
//重连后关闭旧连接 //重连后关闭旧连接
//int idx = _client.FindIndex(s => s.IP.Equals(ip)); int idx = _client.FindIndex(s => s.IP.Equals(ip));
//if (idx > -1) if (idx > -1)
//{ {
// _client[idx].IsConn = false; _client[idx].IsConn = false;
// _client[idx].nodeName.Clear(); _client[idx].nodeName.Clear();
// _client[idx].Loop = false; _client[idx].Loop = false;
// _client[idx].Socket.Close(); _client[idx].Socket.Close();
// _client.RemoveAt(idx); _client.RemoveAt(idx);
//} }
_client.Add(client); _client.Add(client);
listen.Start(_client.Count - 1); listen.Start(_client.Count - 1);
...@@ -371,7 +331,9 @@ namespace BLL ...@@ -371,7 +331,9 @@ namespace BLL
} }
} }
} }
//临时缓存
//线程安全的字典
ConcurrentDictionary<string, byte[]> dic = new ConcurrentDictionary<string, byte[]>();
/// <summary> /// <summary>
/// 客户端数据接收 /// 客户端数据接收
/// </summary> /// </summary>
...@@ -392,9 +354,58 @@ namespace BLL ...@@ -392,9 +354,58 @@ namespace BLL
if (client.Socket.Available > 0) if (client.Socket.Available > 0)
{ {
time = 0; time = 0;
byte[] supBuff = null;
int count = client.Socket.Receive(temp); int count = client.Socket.Receive(temp);
byte[] buff = new byte[count]; if (!dic.TryGetValue(client.IP, out supBuff)) //第一次收到开头必须是0xAD开头的字节
Array.Copy(temp, 0, buff, 0, count); {
if (temp[0].Equals(0xAD))
{
supBuff = new byte[count];
Array.Copy(temp, 0, supBuff, 0, count);
//log.Info(string.Format("start with AB receive:{0}", HexBuff(supBuff)));
}
else
{
//log.Info(string.Format("start without AB receive:{0}", HexBuff(temp)));
for (int i = 0; i < count; i++)
{
if (!temp[i].Equals(0xAD))
continue;
supBuff = new byte[count - i];
Array.Copy(temp, i, supBuff, 0, count - i);
//log.Info(string.Format("start without AB receive after filter:{0}", HexBuff(supBuff)));
break;
}
}
dic.TryAdd(client.IP, supBuff);
}
else
{
byte[] tmp = new byte[count];
Array.Copy(temp, 0, tmp, 0, count);
byte[] curBuff = supBuff.Concat(tmp).ToArray();
dic.TryUpdate(client.IP, curBuff, supBuff);
supBuff = curBuff;
//log.Info(string.Format("receive:{0}",HexBuff(tmp)));
//log.Info(string.Format("buff:{0}",HexBuff(supBuff)));
//log.Info(string.Format("curBuf:{0}",HexBuff(curBuff)));
//log.Info(string.Format("dic[0]:{0}", HexBuff(dic[client.IP])));
}
List<byte> buf = new List<byte>();
for (int i = 0; i < supBuff.Length; i++)
{
if (supBuff[i].Equals(0XAD))
{
if (buf.Count > 0)
buf.Clear();
buf.Add(supBuff[i]);
}
else if (supBuff[i].Equals(0XDA))
{
buf.Add(supBuff[i]);
byte[] buff = buf.ToArray();
//Array.Copy(temp, 0, buff, 0, count);
ClientNode node = Decode(client, buff); ClientNode node = Decode(client, buff);
if (node == null) if (node == null)
...@@ -403,12 +414,30 @@ namespace BLL ...@@ -403,12 +414,30 @@ namespace BLL
} }
else else
{ {
Common.log.Debug(client.IP + " 解码内容:" + HexBuff(buff)); if (!node.Name.StartsWith("A") && !node.Name.Equals("D21") && !node.Name.Equals("D22")
Common.log.Debug("Receive[" + client.IP + "] " + node.StatetText()); && !node.Name.Equals("C21") && !node.Name.Equals("C22"))
{
Common.log.Info("Receive[" + client.IP + "]:[" + HexBuff(buff) + "],解码内容:" + node.StatetText());
}
Common.log.Debug("Receive[" + client.IP + "]:[" + HexBuff(buff) + "],解码内容:" + node.StatetText());
int idx = client.nodeName.FindIndex(s => s == node.Name); int idx = client.nodeName.FindIndex(s => s == node.Name);
if (idx == -1) client.nodeName.Add(node.Name); if (idx == -1) client.nodeName.Add(node.Name);
UpdateNode(node); UpdateNode(node);
} }
if (buf.Count > 0)
buf.Clear();
}
else
{
buf.Add(supBuff[i]);
}
}
if (buf.Count > 0)//存在部分包
{
dic.TryUpdate(client.IP, buf.ToArray(), supBuff);
}
else
dic.TryRemove(client.IP, out byte[] bb);
} }
else else
{ {
...@@ -465,7 +494,7 @@ namespace BLL ...@@ -465,7 +494,7 @@ namespace BLL
if (buff[idx++] != 0xAD) return null; if (buff[idx++] != 0xAD) return null;
if (buff[idx] == 0x00 && buff[idx + 1] == 0x00)//收到产线 if (buff[idx] == 0x00 && buff[idx + 1] == 0x00)//收到产线
{ {
int k = Common.nodeInfo.FindIndex(s => client.IP.Contains(s.IP) && !s.Name.StartsWith("A")); int k = Common.nodeInfo.FindIndex(s => client.IP.Equals(s.IP) && !s.Name.StartsWith("A"));
if (k > -1) if (k > -1)
{ {
name = Common.nodeInfo[k].Name; name = Common.nodeInfo[k].Name;
...@@ -570,7 +599,7 @@ namespace BLL ...@@ -570,7 +599,7 @@ namespace BLL
if (item.IsConn) if (item.IsConn)
{ {
//Common.log.Info("已连接客户端:" + string.Join("#", item.IP)); //Common.log.Info("已连接客户端:" + string.Join("#", item.IP));
if (item.IP.Contains(ip)) if (item.IP.Equals(ip))
{ {
index = _client.IndexOf(item); index = _client.IndexOf(item);
break; break;
...@@ -608,7 +637,7 @@ namespace BLL ...@@ -608,7 +637,7 @@ namespace BLL
{ {
if (_client[idx].IsConn) if (_client[idx].IsConn)
_client[idx].Socket.Send(buff); _client[idx].Socket.Send(buff);
Common.log.Debug("SendTo" + ip + ": " + HexBuff(buff)); Common.log.Info("SendTo" + ip + ": " + HexBuff(buff));
return true; return true;
} }
catch (Exception ex) catch (Exception ex)
......
...@@ -160,7 +160,7 @@ namespace AGVControl.BLL ...@@ -160,7 +160,7 @@ namespace AGVControl.BLL
//获取AGV状态 //获取AGV状态
rtn = Common.mir.Get_State(Common.agvInfo[i], out eAGVState stateID, out string stateText, out int battery, out string mission_text, out Agv_Info.clsPosition position); rtn = Common.mir.Get_State(Common.agvInfo[i], out eAGVState stateID, out string stateText, out int battery, out string mission_text, out Agv_Info.clsPosition position);
Thread.Sleep(50); Thread.Sleep(50);
if (rtn) change = Common.agvInfo[i].SetState(stateID, stateStr, battery, mission_text, position); change = Common.agvInfo[i].SetState(stateID, stateStr, battery, mission_text, position);
// if (change) // if (change)
{ {
......
...@@ -81,7 +81,7 @@ namespace BLL ...@@ -81,7 +81,7 @@ namespace BLL
Log.Info(string.Format("Unlock Request(POST) [emptyStation={0},rfid={1}]", emptyStation, rfid.ToUpper())); Log.Info(string.Format("Unlock Request(POST) [emptyStation={0},rfid={1}]", emptyStation, rfid.ToUpper()));
if (!Common.missionManager.AddMission(value, rfid.ToUpper())) if (!Common.missionManager.AddMission(value, rfid.ToUpper()))
{ {
res = new Result() { Succeed = false, ResultData = null, ErrorMessage = "CreateEmptyRecycleTask failed: " + emptyStation + " rfid=" + rfid }; res = new Result() { Succeed = false, ResultData = "true", ErrorMessage = "CreateEmptyRecycleTask failed due it has been created or rfid=null: " + emptyStation + " rfid=" + rfid };
} }
else else
Common.LogInfo("任务[POST]:" + value + " 出空料架 [location=" + emptyStation + ",rfid=" + rfid.ToUpper() + "]"); Common.LogInfo("任务[POST]:" + value + " 出空料架 [location=" + emptyStation + ",rfid=" + rfid.ToUpper() + "]");
...@@ -90,8 +90,8 @@ namespace BLL ...@@ -90,8 +90,8 @@ namespace BLL
} }
else else
{ {
res = new Result() { Succeed = false, ResultData = null, ErrorMessage = "Not find " + emptyStation }; res = new Result() { Succeed = false, ResultData = null, ErrorMessage = "Not find linename=" + emptyStation };
AGVControl.Common.log.Error("Unlock POST Response false " + "Not find " + emptyStation); AGVControl.Common.log.Error("Unlock POST Response false " + "Not find linename=" + emptyStation);
} }
} }
return JsonHelper.SerializeObject(res); return JsonHelper.SerializeObject(res);
...@@ -113,7 +113,7 @@ namespace BLL ...@@ -113,7 +113,7 @@ namespace BLL
if (!Common.missionManager.AddMission(value,RFID.ToUpper())) if (!Common.missionManager.AddMission(value,RFID.ToUpper()))
{ {
res = new Result() { Succeed = false, ResultData = null, ErrorMessage = "CreateEmptyRecycleTask failed: " + line }; res = new Result() { Succeed = false, ResultData = "true", ErrorMessage = "CreateEmptyRecycleTask failed due it has been created or rfid=null: " + line +"rfid="+ RFID.ToUpper() };
} }
else else
{ {
...@@ -124,8 +124,8 @@ namespace BLL ...@@ -124,8 +124,8 @@ namespace BLL
} }
else else
{ {
res = new Result() { Succeed = false, ResultData = null, ErrorMessage = "Not find " + line }; res = new Result() { Succeed = false, ResultData = null, ErrorMessage = "Not find linename=" + line };
AGVControl.Common.LogInfo("Unlock GET Response false " + "Not find " + line); AGVControl.Common.LogInfo("Unlock GET Response false " + "Not find linename=" + line);
} }
//Log.Info(string.Format("WebService GET Request emptyStation={0},rfid={1}", line, RFID)); //Log.Info(string.Format("WebService GET Request emptyStation={0},rfid={1}", line, RFID));
return JsonHelper.SerializeObject(res); return JsonHelper.SerializeObject(res);
......
...@@ -423,10 +423,11 @@ namespace BLL ...@@ -423,10 +423,11 @@ namespace BLL
battery = 0; battery = 0;
mission_text = ""; mission_text = "";
position = new Agv_Info.clsPosition(); position = new Agv_Info.clsPosition();
string json="";
try try
{ {
string url = "http://" + info.IP + "/api/v2.0.0/status?whitelist=state_id,state_text,battery_percentage,mission_text,position"; string url = "http://" + info.IP + "/api/v2.0.0/status?whitelist=state_id,state_text,battery_percentage,mission_text,position";
string json = HttpGet(url, info.IP, info.Authorization); json = HttpGet(url, info.IP, info.Authorization);
if (string.IsNullOrWhiteSpace(json)) return false; if (string.IsNullOrWhiteSpace(json)) return false;
JavaScriptSerializer serializer = new JavaScriptSerializer(); JavaScriptSerializer serializer = new JavaScriptSerializer();
Dictionary<string, object> dic = (Dictionary<string, object>)serializer.DeserializeObject(json); Dictionary<string, object> dic = (Dictionary<string, object>)serializer.DeserializeObject(json);
...@@ -458,7 +459,7 @@ namespace BLL ...@@ -458,7 +459,7 @@ namespace BLL
} }
catch (Exception ex) catch (Exception ex)
{ {
Common.log.Error("Get_State: ", ex); Common.log.Error("Get_State["+info.IP+"]:"+json, ex);
return false; return false;
} }
} }
......
...@@ -880,6 +880,7 @@ ...@@ -880,6 +880,7 @@
this.btnAddMission.TabIndex = 40; this.btnAddMission.TabIndex = 40;
this.btnAddMission.Text = "添加绑定任务"; this.btnAddMission.Text = "添加绑定任务";
this.btnAddMission.UseVisualStyleBackColor = true; this.btnAddMission.UseVisualStyleBackColor = true;
this.btnAddMission.Visible = false;
this.btnAddMission.Click += new System.EventHandler(this.btnAddMission_Click); this.btnAddMission.Click += new System.EventHandler(this.btnAddMission_Click);
// //
// cmbBoxLineName // cmbBoxLineName
......
...@@ -193,7 +193,7 @@ namespace AGVControl ...@@ -193,7 +193,7 @@ namespace AGVControl
if (RFID.StartsWith("C") && !agv.Place.Equals(SettingString.D4FeederIn) && !agv.Place.Equals(SettingString.C4FeederIn)) if (RFID.StartsWith("C") && !agv.Place.Equals(SettingString.D4FeederIn) && !agv.Place.Equals(SettingString.C4FeederIn))
{ {
SendFullShelfStep.ToNextStep(SEND_FULL_SHELF_STEP.WAIT_BIG_SHELF_UNLOCK); SendFullShelfStep.ToNextStep(SEND_FULL_SHELF_STEP.WAIT_BIG_SHELF_UNLOCK);
runInfo = "AGV到达 " + FullShelfPlace + ",并等待大料架[" + RFID + "]解绑"; runInfo = "AGV到达 " + FullShelfPlace + ",并等待大料架[" + RFID + "]库位转移";
msg += runInfo; msg += runInfo;
SendFullShelfStep.Msg = msg; SendFullShelfStep.Msg = msg;
} }
...@@ -215,7 +215,7 @@ namespace AGVControl ...@@ -215,7 +215,7 @@ namespace AGVControl
System.Threading.Thread.Sleep(50); System.Threading.Thread.Sleep(50);
if (AGVManager.GetRackBy(RFID, out string lineName) || (input != null && input[0])) if (AGVManager.GetRackBy(RFID, out string lineName) || (input != null && input[0]))
{ {
runInfo = "大料架在" + FullShelfPlace + "解绑完成 [" + RFID + "] [" + agv.BoxDestInfo + "]"; runInfo = "大料架在" + FullShelfPlace + "库位转移完成 [" + RFID + "] [" + agv.BoxDestInfo + "]";
agv.BoxDestInfo = ""; agv.BoxDestInfo = "";
msg += runInfo; msg += runInfo;
SendFullShelfStep.Msg = msg; SendFullShelfStep.Msg = msg;
......
²úÏßÃû,½ÚµãÃû,IP,²úÏß±ðÃû,λÖÃÃû³Æ,λÖÃguid ²úÏßÃû,½ÚµãÃû,IP,²úÏß±ðÃû,λÖÃÃû³Æ,λÖÃguid
A5,A5,10.85.199.20,下料区(A5),PA5,7ed952c3-b520-11ea-b6ad-00012998f5a0 A5,A5,10.85.199.20,Ë«²ãÏßÈë¿Ú(A5),PA5,7ed952c3-b520-11ea-b6ad-00012998f5a0
A6,A6,10.85.199.20,上料区(A6),PA6,929eb1c2-b520-11ea-b6ad-00012998f5a0 A6,A6,10.85.199.20,Ë«²ãÏß³ö¿Ú(A6),PA6,929eb1c2-b520-11ea-b6ad-00012998f5a0
D1,D1,10.85.199.42,4D-1Ïß,DL1,3b823fe4-b368-11ea-a1a5-00012999830e D1,D1,10.85.199.42,4D-1Ïß,DL1,3b823fe4-b368-11ea-a1a5-00012999830e
D2,D2,10.85.199.90,4D-2Ïß,DL2,ede15fcb-b367-11ea-a1a5-00012999830e D2,D2,10.85.199.90,4D-2Ïß,DL2,ede15fcb-b367-11ea-a1a5-00012999830e
D3,D3,10.85.199.91,4D-3Ïß,DL3,43855a9b-b365-11ea-a1a5-00012999830e D3,D3,10.85.199.91,4D-3Ïß,DL3,43855a9b-b365-11ea-a1a5-00012999830e
...@@ -26,8 +26,8 @@ C6,C6,10.85.199.55,4C-6线,G6,b9117881-cdac-11ea-a3e4-94c691a7387d ...@@ -26,8 +26,8 @@ C6,C6,10.85.199.55,4C-6线,G6,b9117881-cdac-11ea-a3e4-94c691a7387d
C7,C7,10.85.199.56,4C-7Ïß,G7,b3cda9db-cdac-11ea-a3e4-94c691a7387d C7,C7,10.85.199.56,4C-7Ïß,G7,b3cda9db-cdac-11ea-a3e4-94c691a7387d
C8,C8,10.85.199.57,4C-8Ïß,G8,ae09fc56-cdac-11ea-a3e4-94c691a7387d C8,C8,10.85.199.57,4C-8Ïß,G8,ae09fc56-cdac-11ea-a3e4-94c691a7387d
C9,C9,10.85.199.62,4C-9Ïß,G9,a64bdbbb-cdac-11ea-a3e4-94c691a7387d C9,C9,10.85.199.62,4C-9Ïß,G9,a64bdbbb-cdac-11ea-a3e4-94c691a7387d
C14,C14,10.85.199.61,4C-14Ïß,G14,a64bdbbb-cdac-11ea-a3e4-94c691a7387d
C15,C15,10.85.199.60,4C-15Ïß,G15,a64bdbbb-cdac-11ea-a3e4-94c691a7387d
4CFeederIn,C21,10.85.197.40,4C-FeederIn,C21,cb7f117b-ca88-11ea-9b28-0001299981d4
4CFeederOut,C22,10.85.197.40,4C-FeederOut,C22,0fcf606c-d417-11ea-9b6b-0001299981d4
C10,C10,10.85.199.59,4C-10Ïß,G10,604b1c3c-ca4e-11ea-810b-00012999830e C10,C10,10.85.199.59,4C-10Ïß,G10,604b1c3c-ca4e-11ea-810b-00012999830e
C14,C14,10.85.199.60,4C-14线,G14,07841fc6-d0d4-11ea-a3e4-94c691a7387d
C15,C15,10.85.199.61,4C-15线,G15,0efca2c6-d0d4-11ea-a3e4-94c691a7387d
4CFeederIn,C21,10.85.199.1,4C-FeederIn,G21,cb7f117b-ca88-11ea-9b28-0001299981d4
4CFeederOut,C22,10.85.199.1,4C-FeederOut,G22,0fcf606c-d417-11ea-9b6b-0001299981d4
{"NodeUnlockMissions":{"D1":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D2":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D3":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D4":{"NodeName":null,"EmptyCnt":1,"Rfids":{"C2":"2021/01/21/09:18:50,014"}},"D5":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D6":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D8":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D9":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D10":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D11":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D12":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D14":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D15":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D16":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D22":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C1":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C2":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C3":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C4":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C5":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C6":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C7":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C8":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C9":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C10":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C14":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C15":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C22":{"NodeName":null,"EmptyCnt":0,"Rfids":{}}}} {"NodeUnlockMissions":{"D1":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D2":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D3":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D4":{"NodeName":null,"EmptyCnt":1,"Rfids":{"C2":"2021/01/21/09:18:50,014"}},"D5":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D6":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D8":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D9":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D10":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D11":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D12":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D14":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D15":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D16":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"D22":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C1":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C2":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C3":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C4":{"NodeName":null,"EmptyCnt":1,"Rfids":{"D9":"2021/04/14/10:30:23,611"}},"C5":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C6":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C7":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C8":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C9":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C10":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C14":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C15":{"NodeName":null,"EmptyCnt":0,"Rfids":{}},"C22":{"NodeName":null,"EmptyCnt":0,"Rfids":{}}}}
...@@ -18,3 +18,5 @@ RFID= ...@@ -18,3 +18,5 @@ RFID=
EmptyShelfCnt=1 EmptyShelfCnt=1
[D4] [D4]
EmptyShelfCnt=1 EmptyShelfCnt=1
[C4]
EmptyShelfCnt=1
[2021-01-21 09:15:00,348][1][AgvServer:46]INFO =====程序开始===== [2021-04-16 11:00:57,900][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:15:00,394][1][AgvServer:54]INFO Server Start [2021-04-16 11:00:58,165][1][AgvServer:56]INFO Server Start
[2021-01-21 09:15:00,768][1][AgvServer:150]ERROR Open [2021-04-16 11:01:02,962][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。 System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes() 在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start() 在 System.Net.HttpListener.Start()
...@@ -18,376 +18,367 @@ System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+ ...@@ -18,376 +18,367 @@ System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) 在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open() 在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145 在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:15:05,055][7][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:01:07,937][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:15:18,817][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:15:18,861][1][AgvServer:54]INFO Server Start
[2021-01-21 09:15:19,049][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:15:23,555][8][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:15:52,390][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:15:52,443][1][AgvServer:54]INFO Server Start
[2021-01-21 09:15:52,637][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:15:57,055][8][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:16:52,145][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:16:52,188][1][AgvServer:54]INFO Server Start
[2021-01-21 09:16:52,373][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:16:57,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:16:59,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:17:00,357][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:01,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:01:12,974][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:02,223][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:03,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应 [2021-04-16 11:01:18,006][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:05,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:17:05,377][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:07,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应 [2021-04-16 11:01:23,036][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:09,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:17:10,396][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:11,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应 [2021-04-16 11:01:24,217][10][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:17:12,224][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:01:28,061][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:13,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:01:33,090][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:15,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:17:15,414][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:17,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应 [2021-04-16 11:01:40,927][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:19,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:17:20,451][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:21,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:01:45,265][10][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:17:22,262][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:01:45,964][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:23,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应 [2021-04-16 11:01:50,313][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:25,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:17:25,482][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:27,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应 [2021-04-16 11:01:50,983][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:29,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:17:31,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:17:32,285][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:33,055][14][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:01:56,021][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:33,302][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:34,922][1][AgvServer:1092]INFO 手动开启小车自动模式,并清除上一次的自动模式的运行信息MiR_R1763 设备:MiR_R1763 [2021-04-16 11:02:01,052][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
RFID:
任务信息:[任务名称=][任务状态=]
执行信息:
[2021-01-21 09:17:35,055][14][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:17:37,055][14][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:17:38,327][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:38,767][1][AgvServer:1092]INFO 手动开启小车自动模式,并清除上一次的自动模式的运行信息MiR_R1764 设备:MiR_R1764 [2021-04-16 11:02:06,086][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
RFID:
任务信息:[任务名称=][任务状态=]
执行信息:
[2021-01-21 09:17:39,055][14][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:17:41,055][14][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:17:42,309][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:43,055][14][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应 [2021-04-16 11:02:14,014][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:43,357][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:45,055][11][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:02:14,307][11][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:17:46,298][4][AgvServer:1092]INFO 服务端关闭连接,退出阻塞Accept [2021-04-16 11:02:19,050][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:17:46,339][1][AgvServer:1092]INFO Server Stop
[2021-01-21 09:17:46,350][1][AgvServer:164]ERROR Close
System.ServiceModel.CommunicationObjectFaultedException: 通信对象 System.ServiceModel.Web.WebServiceHost 无法用于通信,因为其处于“出错”状态。
在 System.ServiceModel.Channels.CommunicationObject.Close(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Close()
在 BLL.WebService.Close() 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 159
[2021-01-21 09:17:46,351][1][AgvServer:66]INFO =====程序结束=====
[2021-01-21 09:18:09,230][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:18:09,371][1][AgvServer:54]INFO Server Start
[2021-01-21 09:18:09,624][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:18:14,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:18:16,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:18:17,475][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:18,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:02:24,091][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:18:19,404][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:20,056][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应 [2021-04-16 11:02:29,117][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:18:22,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:18:22,514][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:24,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应 [2021-04-16 11:02:34,153][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:18:26,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:18:27,532][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:28,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应 [2021-04-16 11:02:35,358][11][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:18:29,426][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:02:36,991][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:37,233][1][AgvServer:1114]INFO 节点更新 [Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:39,091][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:39,193][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:30,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:02:40,396][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:18:32,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:18:32,552][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:34,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应 [2021-04-16 11:02:41,192][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:36,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应 [2021-04-16 11:02:43,297][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:37,573][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:02:45,456][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:47,153][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:38,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:02:47,559][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:39,448][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:02:47,685][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:47,906][1][AgvServer:1114]INFO 节点更新 [Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:49,766][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:49,891][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:51,991][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:52,115][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:52,185][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:40,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应 [2021-04-16 11:02:54,217][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:42,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:02:54,342][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:42,604][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:02:54,699][1][AgvServer:1114]INFO 节点更新 [Name=D21, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:56,559][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:56,683][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:02:57,218][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:44,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应 [2021-04-16 11:02:58,914][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:46,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应 [2021-04-16 11:02:58,976][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:48,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应 [2021-04-16 11:02:59,435][1][AgvServer:1114]INFO 节点更新 [Name=D22, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:49,455][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:03:01,349][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:01,412][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:02,244][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:50,024][1][AgvServer:1092]INFO D4解绑任务添加成功:RFID=C2 [2021-04-16 11:03:03,776][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:50,033][1][AgvServer:1092]INFO 手动添加任务成功:4D-4线 C2 [2021-04-16 11:03:03,900][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:50,055][9][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:03:04,348][7][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:18:50,487][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:03:06,197][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:06,322][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:06,509][1][AgvServer:1114]INFO 节点更新 [Name=D22, NodeStatus=NeedEnter, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:07,272][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:52,055][9][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应 [2021-04-16 11:03:08,683][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:54,055][9][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:03:08,744][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:55,503][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:03:11,109][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:11,172][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:12,309][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:56,056][9][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应 [2021-04-16 11:03:13,523][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:18:58,055][9][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应 [2021-04-16 11:03:13,649][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:00,055][9][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应 [2021-04-16 11:03:16,007][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:00,528][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:03:16,132][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:18,428][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:18,553][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:20,268][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:00,985][4][AgvServer:1092]INFO 服务端关闭连接,退出阻塞Accept [2021-04-16 11:03:20,909][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:01,026][1][AgvServer:1092]INFO Server Stop [2021-04-16 11:03:20,972][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:01,032][1][AgvServer:164]ERROR Close [2021-04-16 11:03:21,555][1][AgvServer:1114]INFO 节点更新 [Name=C21, NodeStatus=NeedEnter, RFID=D1,ClientLevel =Low]
System.ServiceModel.CommunicationObjectFaultedException: 通信对象 System.ServiceModel.Web.WebServiceHost 无法用于通信,因为其处于“出错”状态。 [2021-04-16 11:03:23,471][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
在 System.ServiceModel.Channels.CommunicationObject.Close(TimeSpan timeout) [2021-04-16 11:03:23,534][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
在 System.ServiceModel.Channels.CommunicationObject.Close() [2021-04-16 11:03:25,306][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 BLL.WebService.Close() 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 159 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
[2021-01-21 09:19:01,032][1][AgvServer:66]INFO =====程序结束===== 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
[2021-01-21 09:19:03,871][1][AgvServer:46]INFO =====程序开始===== 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:04,070][1][AgvServer:54]INFO Server Start [2021-04-16 11:03:25,614][7][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:19:04,264][1][AgvServer:150]ERROR Open [2021-04-16 11:03:26,010][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。 [2021-04-16 11:03:26,136][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
在 System.Net.HttpListener.AddAllPrefixes() [2021-04-16 11:03:28,548][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
在 System.Net.HttpListener.Start() [2021-04-16 11:03:28,672][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen() [2021-04-16 11:03:30,348][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
--- 内部异常堆栈跟踪的结尾 --- 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen() 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback) 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout) [2021-04-16 11:03:30,659][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout) [2021-04-16 11:03:31,087][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) [2021-04-16 11:03:31,212][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
在 System.ServiceModel.Channels.CommunicationObject.Open() [2021-04-16 11:03:33,690][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145 [2021-04-16 11:03:33,751][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:09,055][8][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:03:34,405][1][AgvServer:1114]INFO 节点更新 [Name=C22, NodeStatus=NeedLeave, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:11,055][8][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应 [2021-04-16 11:03:35,385][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:19:12,134][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:03:36,325][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:36,449][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:38,978][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:39,105][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:40,420][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:03:41,655][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:41,781][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:44,320][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:44,443][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:45,455][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:03:46,984][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:47,046][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:49,651][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:49,716][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:52,321][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:52,383][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:53,417][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:03:54,453][11][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-16 11:03:54,928][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:55,052][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:57,610][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:57,734][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:03:58,441][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:04:00,284][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:00,410][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:02,947][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:03,071][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:03,480][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:04:05,618][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:05,680][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:08,222][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:08,345][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:08,509][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:04:10,888][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:11,015][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:13,544][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:13,549][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:04:13,662][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:15,487][11][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-16 11:04:16,209][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:16,333][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:18,576][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:04:18,879][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:18,940][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:20,528][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:04:21,543][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:21,606][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:24,217][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:24,280][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:26,516][15][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-16 11:04:26,875][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:27,001][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:29,538][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:29,660][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:31,569][15][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:13,055][8][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:04:32,200][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:15,055][8][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应 [2021-04-16 11:04:32,324][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:17,055][8][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应 [2021-04-16 11:04:34,869][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:17,159][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:04:34,994][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:36,597][15][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:19,055][8][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应 [2021-04-16 11:04:37,520][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:21,055][12][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:04:37,644][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:22,179][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:04:40,181][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:40,306][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:41,629][15][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:23,055][12][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应 [2021-04-16 11:04:42,845][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:25,055][12][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:04:42,968][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:27,055][12][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应 [2021-04-16 11:04:44,562][6][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:19:27,215][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:04:45,515][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:45,640][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:46,664][15][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:29,055][12][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应 [2021-04-16 11:04:48,176][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:30,091][9][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器 [2021-04-16 11:04:48,238][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:31,055][12][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应 [2021-04-16 11:04:50,783][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:32,249][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:04:50,908][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:51,694][15][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:33,055][8][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应 [2021-04-16 11:04:53,458][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:35,055][8][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应 [2021-04-16 11:04:53,582][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-01-21 09:19:35,124][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时 [2021-04-16 11:04:56,123][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 01 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D1, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:56,247][9][AgvServer:420]INFO Receive[127.0.0.1:32405]:[AD 44 02 44 01 00 00 00 00 00 00 DA ],解码内容:[Name=D2, NodeStatus=None, RFID=D1,ClientLevel =Low]
[2021-04-16 11:04:59,600][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:37,055][8][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应 [2021-04-16 11:05:04,626][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
[2021-01-21 09:19:37,279][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) 在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data) 在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data) 在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142 在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:39,055][8][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应 [2021-04-16 11:05:05,619][6][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:19:39,458][1][AgvServer:1092]INFO 手动开启小车自动模式,并清除上一次的自动模式的运行信息MiR_R1763 设备:MiR_R1763
RFID:
任务信息:[任务名称=][任务状态=]
执行信息:
[2021-01-21 09:19:41,055][8][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:19:43,056][8][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:15:00,348][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:15:00,394][1][AgvServer:54]INFO Server Start
[2021-01-21 09:15:00,768][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:15:05,055][7][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:15:18,817][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:15:18,861][1][AgvServer:54]INFO Server Start
[2021-01-21 09:15:19,049][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:15:23,555][8][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:15:52,390][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:15:52,443][1][AgvServer:54]INFO Server Start
[2021-01-21 09:15:52,637][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:15:57,055][8][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:16:52,145][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:16:52,188][1][AgvServer:54]INFO Server Start
[2021-01-21 09:16:52,373][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:16:57,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:16:59,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:17:00,357][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:01,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:17:02,223][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:03,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:17:05,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:17:05,377][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:07,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:17:09,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:17:10,396][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:11,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:17:12,224][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:13,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:17:15,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:17:15,414][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:17,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:17:19,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:17:20,451][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:21,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:17:22,262][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:23,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:17:25,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:17:25,482][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:27,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:17:29,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:17:31,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:17:32,285][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:33,055][14][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:17:33,302][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:34,922][1][AgvServer:1092]INFO 手动开启小车自动模式,并清除上一次的自动模式的运行信息MiR_R1763 设备:MiR_R1763
RFID:
任务信息:[任务名称=][任务状态=]
执行信息:
[2021-01-21 09:17:35,055][14][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:17:37,055][14][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:17:38,327][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:38,767][1][AgvServer:1092]INFO 手动开启小车自动模式,并清除上一次的自动模式的运行信息MiR_R1764 设备:MiR_R1764
RFID:
任务信息:[任务名称=][任务状态=]
执行信息:
[2021-01-21 09:17:39,055][14][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:17:41,055][14][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:17:42,309][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:43,055][14][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:17:43,357][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:17:45,055][11][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:17:46,298][4][AgvServer:1092]INFO 服务端关闭连接,退出阻塞Accept
[2021-01-21 09:17:46,339][1][AgvServer:1092]INFO Server Stop
[2021-01-21 09:17:46,350][1][AgvServer:164]ERROR Close
System.ServiceModel.CommunicationObjectFaultedException: 通信对象 System.ServiceModel.Web.WebServiceHost 无法用于通信,因为其处于“出错”状态。
在 System.ServiceModel.Channels.CommunicationObject.Close(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Close()
在 BLL.WebService.Close() 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 159
[2021-01-21 09:17:46,351][1][AgvServer:66]INFO =====程序结束=====
[2021-01-21 09:18:09,230][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:18:09,371][1][AgvServer:54]INFO Server Start
[2021-01-21 09:18:09,624][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:18:14,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:18:16,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:18:17,475][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:18,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:18:19,404][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:20,056][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:18:22,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:18:22,514][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:24,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:18:26,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:18:27,532][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:28,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:18:29,426][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:30,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:18:32,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:18:32,552][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:34,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:18:36,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:18:37,573][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:38,055][6][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:18:39,448][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:40,055][6][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:18:42,055][6][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:18:42,604][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:44,055][6][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:18:46,055][6][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:18:48,055][6][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:18:49,455][7][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:50,024][1][AgvServer:1092]INFO D4解绑任务添加成功:RFID=C2
[2021-01-21 09:18:50,033][1][AgvServer:1092]INFO 手动添加任务成功:4D-4线 C2
[2021-01-21 09:18:50,055][9][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:18:50,487][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:52,055][9][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:18:54,055][9][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:18:55,503][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:18:56,056][9][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:18:58,055][9][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:19:00,055][9][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:19:00,528][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:00,985][4][AgvServer:1092]INFO 服务端关闭连接,退出阻塞Accept
[2021-01-21 09:19:01,026][1][AgvServer:1092]INFO Server Stop
[2021-01-21 09:19:01,032][1][AgvServer:164]ERROR Close
System.ServiceModel.CommunicationObjectFaultedException: 通信对象 System.ServiceModel.Web.WebServiceHost 无法用于通信,因为其处于“出错”状态。
在 System.ServiceModel.Channels.CommunicationObject.Close(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Close()
在 BLL.WebService.Close() 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 159
[2021-01-21 09:19:01,032][1][AgvServer:66]INFO =====程序结束=====
[2021-01-21 09:19:03,871][1][AgvServer:46]INFO =====程序开始=====
[2021-01-21 09:19:04,070][1][AgvServer:54]INFO Server Start
[2021-01-21 09:19:04,264][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-01-21 09:19:09,055][8][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:19:11,055][8][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:19:12,134][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:13,055][8][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:19:15,055][8][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:19:17,055][8][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:19:17,159][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:19,055][8][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:19:21,055][12][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:19:22,179][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:23,055][12][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:19:25,055][12][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:19:27,055][12][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:19:27,215][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:29,055][12][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:19:30,091][9][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-01-21 09:19:31,055][12][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-01-21 09:19:32,249][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:33,055][8][AgvServer:650]INFO Ping 10.85.199.71 请求没有响应
[2021-01-21 09:19:35,055][8][AgvServer:650]INFO Ping 10.85.199.72 请求没有响应
[2021-01-21 09:19:35,124][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:37,055][8][AgvServer:650]INFO Ping 10.85.199.73 请求没有响应
[2021-01-21 09:19:37,279][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-01-21 09:19:39,055][8][AgvServer:650]INFO Ping 10.85.199.74 请求没有响应
[2021-01-21 09:19:39,458][1][AgvServer:1092]INFO 手动开启小车自动模式,并清除上一次的自动模式的运行信息MiR_R1763 设备:MiR_R1763
RFID:
任务信息:[任务名称=][任务状态=]
执行信息:
[2021-01-21 09:19:41,055][8][AgvServer:650]INFO Ping 10.85.199.80 请求没有响应
[2021-01-21 09:19:43,056][8][AgvServer:650]INFO Ping 10.85.199.81 请求没有响应
[2021-04-14 10:24:32,339][1][AgvServer:46]INFO =====程序开始=====
[2021-04-14 10:24:32,592][1][AgvServer:54]INFO Server Start
[2021-04-14 10:24:32,988][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-04-14 10:24:40,722][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:24:45,750][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:24:50,789][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:24:55,810][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:24:58,668][9][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:25:00,854][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:03,720][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:05,892][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:13,708][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:18,740][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:23,773][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:28,708][12][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:25:28,801][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:33,771][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:33,832][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:38,866][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:46,821][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:51,850][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:56,881][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:25:58,742][14][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:26:01,921][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:03,768][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:06,958][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:11,992][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:19,914][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:24,951][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:28,765][14][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:26:29,977][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:33,790][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:35,006][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:40,046][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:45,082][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:53,042][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:58,068][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:26:58,865][11][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:27:03,104][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:03,892][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:08,132][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:13,161][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:18,187][12][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:26,112][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:28,909][6][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:27:31,136][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:33,946][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:36,163][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:41,188][8][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:27:49,486][1][AgvServer:46]INFO =====程序开始=====
[2021-04-14 10:27:49,668][1][AgvServer:54]INFO Server Start
[2021-04-14 10:27:49,840][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:8888/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-04-14 10:27:57,758][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:02,794][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:07,821][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:12,845][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:15,732][9][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:28:17,873][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:20,767][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:22,915][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:30,769][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:35,796][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:40,827][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:45,792][11][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:28:45,882][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:50,834][11][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:50,897][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:28:55,925][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:03,863][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:08,898][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:13,929][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:19,720][1][AgvServer:46]INFO =====程序开始=====
[2021-04-14 10:29:19,895][1][AgvServer:54]INFO Server Start
[2021-04-14 10:29:22,569][1][AgvServer:150]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/BenQMIR/Webservice/AGVService.asmx/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 145
[2021-04-14 10:29:31,844][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:36,877][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:41,911][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:46,947][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:47,777][9][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:29:51,972][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:52,816][9][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:29:57,005][6][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:30:16,488][1][AgvServer:46]INFO =====程序开始=====
[2021-04-14 10:30:16,627][1][AgvServer:54]INFO Server Start
[2021-04-14 10:30:24,679][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:30:29,694][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:30:34,717][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:30:39,747][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:30:42,697][13][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:30:44,769][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:30:48,851][1][AgvServer:1114]INFO C4解绑任务添加成功:RFID=D9
[2021-04-14 10:30:48,866][9][LineWebService:121]INFO Unlock Request(GET) [emptyStation=C4,rfid=D9]
[2021-04-14 10:30:48,887][1][AgvServer:1114]INFO 任务[GET]:C4 出空料架 [emptyStation=C4,rfid=D9]
[2021-04-14 10:30:49,794][10][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:30:57,760][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:02,782][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:03,746][13][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:31:07,817][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:08,771][13][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:12,829][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:17,857][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:22,887][16][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:30,847][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:32,726][15][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:31:35,859][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:40,886][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:45,902][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:50,931][14][AgvServer:147]ERROR POST ERROR:System.Net.WebException: 操作超时
在 System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
在 System.Net.WebClient.UploadString(Uri address, String method, String data)
在 System.Net.WebClient.UploadString(String address, String method, String data)
在 BLL.HttpHelper.Post(String url, String paramData, Encoding encoding) 位置 E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\HttpHelper.cs:行号 142
[2021-04-14 10:31:53,781][15][AgvServer:181]ERROR HTTP GET ERROR:无法连接到远程服务器
[2021-04-14 10:31:55,125][4][AgvServer:1114]INFO 服务端关闭连接,退出阻塞Accept
[2021-04-14 10:31:55,179][1][AgvServer:1114]INFO Server Stop
[2021-04-14 10:31:55,185][1][AgvServer:160]INFO Web服务已关闭
[2021-04-14 10:31:55,185][1][AgvServer:66]INFO =====程序结束=====

\ No newline at end of file \ No newline at end of file
[2021-04-14 10:30:48,866]INFO Unlock Request(GET) [emptyStation=C4,rfid=D9]
...@@ -71,4 +71,3 @@ E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLi ...@@ -71,4 +71,3 @@ E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLi
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csproj.CopyComplete E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csproj.CopyComplete
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.exe E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.exe
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.pdb E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.pdb
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csprojAssemblyReference.cache
...@@ -364,10 +364,17 @@ namespace AsaPL ...@@ -364,10 +364,17 @@ namespace AsaPL
int idx = 0; int idx = 0;
byte[] buff = new byte[12]; byte[] buff = new byte[12];
buff[idx++] = 0xAD; buff[idx++] = 0xAD;
try
{
buff[idx++] = (byte)node.Name[0]; buff[idx++] = (byte)node.Name[0];
buff[idx++] = Convert.ToByte(node.Name.Substring(1)); buff[idx++] = Convert.ToByte(node.Name.Substring(1));
buff[idx++] = (byte)node.RFID[0]; buff[idx++] = (byte)node.RFID[0];
buff[idx++] = Convert.ToByte(node.RFID.Substring(1)); buff[idx++] = Convert.ToByte(node.RFID.Substring(1));
}
catch(Exception ex)
{
LOG.Error("encode:",ex);
}
if (CancelState) if (CancelState)
buff[idx++] = (byte)ClientAction.None; buff[idx++] = (byte)ClientAction.None;
......
f2c4345434d8c56490cc359d0d6ac5832ab39fd4 214ddb8988ae2ab2910e039d16c36c3c63fd112e
...@@ -27,3 +27,10 @@ C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AgvClient ...@@ -27,3 +27,10 @@ C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AgvClient
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AgvClient.csproj.CopyComplete C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AgvClient.csproj.CopyComplete
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AsaPL.AgvClient.dll C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AsaPL.AgvClient.dll
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AsaPL.AgvClient.pdb C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AsaPL.AgvClient.pdb
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\bin\Debug\AsaPL.AgvClient.dll
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\bin\Debug\AsaPL.AgvClient.pdb
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AgvClient.csprojAssemblyReference.cache
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AgvClient.csproj.CoreCompileInputs.cache
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AgvClient.csproj.CopyComplete
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AsaPL.AgvClient.dll
E:\Neotel\Projects\Gitee\AGVControl-Qisda-ProductionLine\AgvClient\obj\Debug\AsaPL.AgvClient.pdb
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!