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()) {
responseBody = makeResponseBodyMsg();
if ( encryptAsyncAckApply) {
responseBody = service.doPostEncryption(responseBody, transactionProp, servletRequest);
}
} else {
responseBody = asyncMsgStyle;
}
if ( encryptAsyncAckApply) {
responseBody = service.doPostEncryption(responseBody, transactionProp, servletRequest);
}
responseEntity = ResponseEntity.status(httpStatus).contentType(mediaType).body(responseBody);
// jwhong
} else {