This commit is contained in:
13118993771@163.com
2022-07-27 14:46:20 +08:00
parent 5e9d0f1e2d
commit b593a243a5
260 changed files with 88819 additions and 102277 deletions

View File

@@ -167,6 +167,7 @@ namespace ARI.EAP.HOST.Handlers.EventHandlers
item.DATAID = EquipmentStatus.commandCount++;
item.OBJSPEC = "";
item.RCMD = "Slotlist_Request";
//todo:需要加空的list
Command.S2F49Command(item);
}
@@ -184,7 +185,7 @@ namespace ARI.EAP.HOST.Handlers.EventHandlers
public static void UploadFile(JObject body = null)
{
long fileId = long.Parse(body["fileId"].ToString());
DownLoadFileParam downLoadFileParam = new DownLoadFileParam(fileId, Constants.eapName + ".xml", "1");
DownLoadFileParam downLoadFileParam = new DownLoadFileParam(fileId, Configuration.conf.connectSetting.name + ".xml", "1");
string param = SECSUtil.ObjectToGetParam(downLoadFileParam);
HttpWebResponse response = HttpUtils.sentGET(Configuration.conf.httpConfiguration.fileDownloadUrl, param);
if(response.StatusCode != HttpStatusCode.OK)

View File

@@ -40,6 +40,7 @@ namespace ARI.EAP.HOST.Handlers.EventHandlers
MQMessage mQMessage = new MQMessage();
mQMessage.header.messageName = "MachineData";
MachineDataBody machineDataBody = new MachineDataBody();
machineDataBody.machineDataName = "MachineData1";
machineDataBody.spoolingFlag = EquipmentStatus.SpoolingFlag.ToString();
int index = 1;
foreach (var key in even.validVariables)