diff options
Diffstat (limited to 'lib/soap/ecc/send/pcr-confirm.ts')
| -rw-r--r-- | lib/soap/ecc/send/pcr-confirm.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/soap/ecc/send/pcr-confirm.ts b/lib/soap/ecc/send/pcr-confirm.ts index 7ac2d931..46d1a909 100644 --- a/lib/soap/ecc/send/pcr-confirm.ts +++ b/lib/soap/ecc/send/pcr-confirm.ts @@ -3,8 +3,8 @@ import { sendSoapXml, type SoapSendConfig, type SoapLogInfo, type SoapSendResult } from "@/lib/soap/sender"; -// ECC PCR 확인 엔드포인트 -const ECC_PCR_CONFIRM_ENDPOINT = "http://shii8dvddb01.hec.serp.shi.samsung.net:50000/sap/xi/engine?type=entry&version=3.0&Sender.Service=P2038_D&Interface=http%3A%2F%2Fshi.samsung.co.kr%2FP2_MM%2FMMM%5EP2MM3019_SO"; +// ECC PCR 확인 엔드포인트 (WSDL에 명시된 P2038_D 사용) +const ECC_PCR_CONFIRM_ENDPOINT = "http://shii8dvddb01.hec.serp.shi.samsung.net:50000/sap/xi/engine?type=entry&version=3.0&Sender.Service=P2038_D&Interface=http%3A%2F%2Fshi.samsung.co.kr%2FP2_MM%2FMMM%5EP2MM3019_SO&QualityOfService=ExactlyOnce"; // PCR 확인 요청 데이터 타입 export interface PCRConfirmRequest { @@ -167,7 +167,8 @@ async function sendPCRConfirmToECC(pcrData: PCRConfirmRequest): Promise<SoapSend soapAction: 'http://sap.com/xi/WebService/soap1.1', timeout: 30000, // PCR 확인은 30초 타임아웃 retryCount: 3, - retryDelay: 1000 + retryDelay: 1000, + namespace: 'http://shi.samsung.co.kr/P2_MM/MMM' // ECC MM 모듈 네임스페이스 }; // 로그 정보 |
