QPlace a pnr to multiple Sabre queues in a step

QPlace a pnr to multiple Sabre queues in one step

我想将指定的 pnr QPlace 到多个队列中。 QueuePlaceLLSRQ_v2.0.4 的文档似乎表明这可以通过重复 QueueIdentifier 元素来实现,但我总是遇到错误

<QueueInfo>
<!--Mandatory-->
<!--Repeat Factor=0-3-->
...
<QueueIdentifier PseudoCityCode="IPCC1" PrefatoryInstructionCode="11" Number="400" Name="ABC123"/>

请求和响应 1:

 <QueuePlaceRQ xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="2.0.4">
      <QueueInfo>
        <QueueIdentifier PseudoCityCode="7Q9I" PrefatoryInstructionCode="11" Number="204" />
        <QueueIdentifier PseudoCityCode="7Q9I" PrefatoryInstructionCode="11" Number="205" />
        <UniqueID ID="CIATDK" />
      </QueueInfo>
    </QueuePlaceRQ>


 <stl:ApplicationResults status="NotProcessed">
        <stl:Error type="BusinessLogic" timeStamp="2020-02-06T05:02:09-06:00">
          <stl:SystemSpecificResults>
            <stl:Message>INVALID FORMAT</stl:Message>
            <stl:ShortText>ERR.SWS.HOST.ERROR_IN_RESPONSE</stl:ShortText>
          </stl:SystemSpecificResults>
        </stl:Error>
      </stl:ApplicationResults>

请求和响应 2:

<QueuePlaceRQ xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="2.0.4">
      <QueueInfo>
        <QueueIdentifier PseudoCityCode="7Q9I" PrefatoryInstructionCode="11" Number="204" />
        <UniqueID ID="ESVDGN" />
        <QueueIdentifier PseudoCityCode="7Q9I" PrefatoryInstructionCode="11" Number="205" />
        <UniqueID ID="ESVDGN" />
      </QueueInfo>
    </QueuePlaceRQ>


<stl:SystemSpecificResults>
<stl:Message>cvc-complex-type.2.4.a: Invalid content was found starting with element 'QueueIdentifier'. One of '{"http://webservices.sabre.com/sabreXML/2011/10":UniqueID}' is expected.</stl:Message>
<stl:ShortText>ERR.SWS.CLIENT.VALIDATION_FAILED</stl:ShortText>
</stl:SystemSpecificResults>

REQUEST & RESPONSE 3(似乎只在队列中,不能使用命名的 pnr):

<QueuePlaceRQ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://webservices.sabre.com/sabreXML/2011/10" Version="2.0.4">
      <MultiQueuePlace>
        <QueueIdentifier PseudoCityCode="7Q9I" PrefatoryInstructionCode="35" Number="205" />
        <QueueIdentifier PseudoCityCode="7Q9I" PrefatoryInstructionCode="35" Number="206" />
      </MultiQueuePlace>
    </QueuePlaceRQ>


    <stl:Error type="BusinessLogic" timeStamp="2020-02-06T05:09:53-06:00">
          <stl:SystemSpecificResults>
            <stl:Message>NO PNR IN AAA</stl:Message>
            <stl:ShortText>ERR.SWS.HOST.ERROR_IN_RESPONSE</stl:ShortText>
          </stl:SystemSpecificResults>
        </stl:Error>
      </stl:ApplicationResults>

问题中正确的方法是"REQUEST & RESPONSE 3",但您的工作区中必须有pnr。如果您还希望 pnr 保留在当前队列中,则应将当前队列添加为目的地。

<QueuePlaceRQ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://webservices.sabre.com/sabreXML/2011/10" Version="2.0.4">
      <MultiQueuePlace>
        <QueueIdentifier PseudoCityCode="7Q9I" PrefatoryInstructionCode="35" Number="205" />
        <QueueIdentifier PseudoCityCode="7Q9I" PrefatoryInstructionCode="35" Number="206" />
      </MultiQueuePlace>
    </QueuePlaceRQ>