Remark : TerminalService 로 Host Terminal 창 구현
- Endpoint : https://apac.universal-api.pp.travelport.com/B2BGateway/connect/uAPI/TerminalService
1. Session 생성 요청
1 2 3 4 5 6 7 8 9 10 11 12 |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ter="http://www.travelport.com/schema/terminal_v33_0" xmlns:com="http://www.travelport.com/schema/common_v33_0"> <soapenv:Header/> <soapenv:Body> <ter:CreateTerminalSessionReq AuthorizedBy="user" TargetBranch="P*******" RetrieveProviderReservationDetails="false" Host="1G"> <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> </ter:CreateTerminalSessionReq> </soapenv:Body> </soapenv:Envelope> |
1 2 3 4 5 6 7 8 9 |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Body> <terminal:CreateTerminalSessionRsp TransactionId="98E8197F0A0D6A7E135E52243DC69894" ResponseTime="150" xmlns:terminal="http://www.travelport.com/schema/terminal_v33_0"> <common_v33_0:HostToken Host="1G" xmlns:common_v33_0="http://www.travelport.com/schema/common_v33_0">7FE07576-49E8-4966-5063-5140690710B3</common_v33_0:HostToken> </terminal:CreateTerminalSessionRsp> </SOAP:Body> </SOAP:Envelope> |
Response => Session 값이 옵니다. 7FE07576-49E8-4966-5063-5140690710B3 // 명령어 세션으로 계속 사용
2.세션이 연결되면 CRS 명령어를 전송 할 수 있습니다. (Session 유효시간은 10분 정도)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ter="http://www.travelport.com/schema/terminal_v33_0" xmlns:com="http://www.travelport.com/schema/common_v33_0"> <soapenv:Header/> <soapenv:Body> <ter:TerminalReq AuthorizedBy="user" TargetBranch="P*******" RetrieveProviderReservationDetails="false"> <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> <com:HostToken Host="1G">7FE07576-49E8-4966-5063-5140690710B3</com:HostToken> <ter:TerminalCommand>QPB*</ter:TerminalCommand> </ter:TerminalReq> </soapenv:Body> </soapenv:Envelope> |
Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Body> <terminal:TerminalRsp TransactionId="98EDE9DD0A0D6A7F7E8B9A4FF0B859D9" ResponseTime="39" xmlns:terminal="http://www.travelport.com/schema/terminal_v33_0"> <terminal:TerminalCommandResponse> <terminal:Text>*** PREF INST TABLE ***</terminal:Text> <terminal:Text>0 URGENT QUEUE ....0</terminal:Text> <terminal:Text>1 GENERAL QUEUE ....0</terminal:Text> <terminal:Text>2 SEATING REPLIES ....9</terminal:Text> <terminal:Text>3 SYNCHRONISATION ADV ..112</terminal:Text> <terminal:Text>4 PAST DATE QUICK ....0</terminal:Text> <terminal:Text>5 QUEUE 5 ....0</terminal:Text> <terminal:Text>6 QUEUE 6 ....0</terminal:Text> <terminal:Text>7 RQR FOLLOW UP ....0</terminal:Text> <terminal:Text>8 TOD FOLLOW UP ....0</terminal:Text> <terminal:Text>9 TICKET REVIEW TAW ....0</terminal:Text> <terminal:Text>10 TICKET REVIEW TAU ....0</terminal:Text> <terminal:Text>11 FARES ....0</terminal:Text> <terminal:Text>)><</terminal:Text> </terminal:TerminalCommandResponse> </terminal:TerminalRsp> </SOAP:Body> </SOAP:Envelope> |
3. 명령어를 사용이 끝나면 Session 7FE07576-49E8-4966-5063-5140690710B3 을 반드시 닫아 줍니다.
1 2 3 4 5 6 7 8 9 10 11 12 |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ter="http://www.travelport.com/schema/terminal_v33_0" xmlns:com="http://www.travelport.com/schema/common_v33_0"> <soapenv:Header/> <soapenv:Body> <ter:EndTerminalSessionReq AuthorizedBy="user" TargetBranch="P*******" RetrieveProviderReservationDetails="false"> <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> <com:HostToken Host="1G">7FE07576-49E8-4966-5063-5140690710B3</com:HostToken> </ter:EndTerminalSessionReq> </soapenv:Body> </soapenv:Envelope> |
4. 터미널 구현
