diff --git a/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp b/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp index b471b6e..4072679 100644 --- a/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp +++ b/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp @@ -1601,10 +1601,14 @@ -
- - -
+
+ + +
+
+ + +
diff --git a/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceService.java b/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceService.java index b117b97..5d694ef 100644 --- a/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceService.java +++ b/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceService.java @@ -213,6 +213,7 @@ public class ApiInterfaceService extends OnlBaseService { if("asyncSync".equals(apiInterfaceUI.getSyncAsyncType()) && serviceMessageEntityList != null && serviceMessageEntityList.size() > 1){ ServiceMessageEntity extraServiceMessageEntity = serviceMessageEntityList.get(1); apiInterfaceUI.setFromResponseAdapter(extraServiceMessageEntity.getPsvsysadptrbzwkgroupname()); + apiInterfaceUI.setToutVal2(extraServiceMessageEntity.getToutval()); String restOptionStr = extraServiceMessageEntity.getRestoption(); if(StringUtils.isNotBlank(restOptionStr)) { @@ -480,7 +481,7 @@ public class ApiInterfaceService extends OnlBaseService { // 응답용 ServiceMessageEntity 설정 responseEntity.setPsvsysadptrbzwkgroupname(vo.getFromResponseAdapter()); responseEntity.setPsvintfacdsticname("ASYN"); - responseEntity.setToutval(vo.getToutVal()); + responseEntity.setToutval(vo.getToutVal2()); // 응답용 REST 정보 설정 AdapterGroupUI responseAdapter = adapterService.selectDetail(vo.getFromResponseAdapter()); diff --git a/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ui/ApiInterfaceUI.java b/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ui/ApiInterfaceUI.java index 9f34cc0..48c61dd 100644 --- a/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ui/ApiInterfaceUI.java +++ b/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ui/ApiInterfaceUI.java @@ -57,6 +57,7 @@ public class ApiInterfaceUI { private String inboundResponseHttpMethod; private String inboundResponseRestPath; private String fromResponseAdapter; + private Long toutVal2; //SYNC-ASYNC 용 private String outboundResponseHttpMethod;