INPUT Async ack 메시지 암호화 수정

This commit is contained in:
jaewohong
2026-02-04 14:30:10 +09:00
parent 20a341348b
commit 94b707e71b
@@ -151,12 +151,13 @@ public class ApiAdapterController implements HttpAdapterServiceKey {
if (asyncMsgStyle == null || asyncMsgStyle.trim().isEmpty()) { if (asyncMsgStyle == null || asyncMsgStyle.trim().isEmpty()) {
responseBody = makeResponseBodyMsg(); responseBody = makeResponseBodyMsg();
if ( encryptAsyncAckApply) {
responseBody = service.doPostEncryption(responseBody, transactionProp, servletRequest);
}
} else { } else {
responseBody = asyncMsgStyle; responseBody = asyncMsgStyle;
} }
if ( encryptAsyncAckApply) {
responseBody = service.doPostEncryption(responseBody, transactionProp, servletRequest);
}
responseEntity = ResponseEntity.status(httpStatus).contentType(mediaType).body(responseBody); responseEntity = ResponseEntity.status(httpStatus).contentType(mediaType).body(responseBody);
// jwhong // jwhong
} else { } else {