[성현모] JsonConvertTool 추가, 서머리 수량 버그수정
This commit is contained in:
@ -63,6 +63,7 @@ namespace SystemX.Net.MiddlewareUI.UIM.Protocol_Method
|
||||
thisConnInfo.bHostLoginState = false;
|
||||
|
||||
bool bUseExist = true;
|
||||
bool bExistInformation = true;
|
||||
|
||||
if (bGetUseUIM && bGetUseSimpleLookupOption)
|
||||
bForcePass = true;
|
||||
@ -78,10 +79,16 @@ namespace SystemX.Net.MiddlewareUI.UIM.Protocol_Method
|
||||
drFindInfo = dtHostTable.Select($"HostID='{strGetHostID}' AND Section='{strGetSection}'");
|
||||
|
||||
bUseExist = Parent_.GetConnectInfoFindHost(strGetHostID, strGetSection, bGetUseUIM);
|
||||
|
||||
bExistInformation = (drFindInfo != null ? drFindInfo.Count() > 0 : false);
|
||||
|
||||
if(drFindInfo == null)
|
||||
{
|
||||
;//
|
||||
}
|
||||
}
|
||||
|
||||
if (((drFindInfo != null ? drFindInfo.Count() > 0 : false) &&
|
||||
bUseExist == false) ||
|
||||
if (bExistInformation ||
|
||||
bForcePass)
|
||||
{
|
||||
string strRegIP = string.Empty;
|
||||
@ -97,11 +104,9 @@ namespace SystemX.Net.MiddlewareUI.UIM.Protocol_Method
|
||||
strConnectIP = thisConnInfo.strCommandEndPointInfo;
|
||||
|
||||
//TODO : For Test Server Code
|
||||
if (true || strConnectIP.IndexOf(strRegIP) >= 0 || bGetUseUIM)
|
||||
if (/* true || */ strConnectIP.IndexOf(strRegIP) >= 0 || bGetUseUIM)
|
||||
{
|
||||
;//IP Address Compare Result PASS
|
||||
//
|
||||
//
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -155,7 +160,7 @@ namespace SystemX.Net.MiddlewareUI.UIM.Protocol_Method
|
||||
}
|
||||
else
|
||||
{
|
||||
if(bUseExist)
|
||||
if(bUseExist && bExistInformation)
|
||||
MakeLoginPacket.objMessage[0].Data = $"HostID={strGetHostID} Section={strGetSection} [FAIL] HOST ID already in use.";
|
||||
else
|
||||
MakeLoginPacket.objMessage[0].Data = $"HostID={strGetHostID} Section={strGetSection} [FAIL] That information does not exist.";
|
||||
|
||||
@ -103,7 +103,7 @@ namespace SystemX.Net.MiddlewareUI.UIM.Protocol_Method
|
||||
|
||||
if (string.IsNullOrEmpty(GetTestListCntID) == false)
|
||||
{
|
||||
getStreamList = Parent_.QueryStreamProcess(strGetQuery, out ucQueryByteArray, out ds, thisConnInfo.strResultTestListCntID);
|
||||
getStreamList = Parent_.QueryStreamProcess(strGetQuery, out ucQueryByteArray, out ds, thisConnInfo.strResultTestListCntID, "DOWNLOAD_TL");
|
||||
|
||||
break;
|
||||
}
|
||||
@ -123,7 +123,7 @@ namespace SystemX.Net.MiddlewareUI.UIM.Protocol_Method
|
||||
|
||||
string strGetQuery = cp.QueryFindTestList(ppPacket, true);
|
||||
|
||||
getStreamList = Parent_.QueryStreamProcess(strGetQuery, out ucQueryByteArray, out ds);
|
||||
getStreamList = Parent_.QueryStreamProcess(strGetQuery, out ucQueryByteArray, out ds, "", "CHECK_TL");
|
||||
|
||||
nByteListSize = getStreamList.Count;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user