首页 文章

Sabre API * OR * IM命令等效

提问于
浏览
-1

PNR不是在DELTA运营商上创建的,需要帮助

我在PassengerDetailsRQ上收到此警告

收到直接连接消息 - 输入 IM

所有定价均已提取,且分段状态为HK但未生成PNR((

你能否告诉我什么是* A OR * IM命令的Sabre API等价物以及如何解决这个问题 .

2 回答

  • 2

    假设您正在使用XML服务,您可以尝试运行负责运行命令的 SabreCommandLLSRQ . 精确命令指令放在 <HostCommand> 节点中 . 下面的 IM 命令示例( Headers 部分为空的详细信息)

    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
      <soap:Header>
        <!-- Header content -->
      </soap:Header>
      <soap:Body>
        <SabreCommandLLSRQ xmlns="http://webservices.sabre.com/sabreXML/2003/07" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" TimeStamp="2014-03-04T14:00:00" Version="1.8.1">
          <Request Output="SCREEN" CDATA="true">
            <HostCommand>IM</HostCommand>
          </Request>
        </SabreCommandLLSRQ>
      </soap:Body>
    </soap:Envelope>
    
  • 1

    如上所述,您可以使用 SabreCommandLLSRQ 运行错误消息中指定的确切主机命令,但 *A 的等效Web服务命令将是具有 FULL 主题区域的TravelItineraryReadRQ(并且未指定UniqueID) .

    再次检索PNR后,您可以再次使用EndTransactionLLSRQ .

相关问题