[긴급!] retEaiMsg null 오류 FIX

This commit is contained in:
yunjy-hp
2025-12-30 14:32:38 +09:00
parent a63f26558d
commit c0f69ce4a2
@@ -1274,8 +1274,14 @@ public class RequestProcessor extends RequestProcessorSupport {
}
//응답 전 표준 전문의 로직 처리 필요 한 경우를 위해 호출
standardManager.getMessageCoordinator().coordinateBeforeResponse(retEaiMsg.getStandardMessage(), vo, prop, inboundCharset);
try{
if(EAIMessageKeys.SYNC_SVC.equals(svcTsmtUsgTp) && retEaiMsg != null){
standardManager.getMessageCoordinator().coordinateBeforeResponse(retEaiMsg.getStandardMessage(), vo, prop, inboundCharset);
}
}catch(Exception e){
logger.error("coordinateBeforeResponse failed.", e);
}
// 10. 응답 거래로그 Logging
if(EAIMessageKeys.SYNC_SVC.equals(svcTsmtUsgTp) &&
STDMessageKeys.SEND_RECV_CD_SEND.equals(returnType) ) {