2017-02-25 4 views
0

私は、次のエラーを取得していますHotelRateDescriptionRSを行う場合:セイバーエラーVERIFY FORMATのERR.SWS.HOST.ERROR_IN_RESPONSE

<stl:ApplicationResults status="NotProcessed"> 
    <stl:Error type="BusinessLogic" timeStamp="2017-02-25T15:33:32-06:00"> 
    <stl:SystemSpecificResults> 
    <stl:Message code="0">VERIFY FORMAT</stl:Message> 
    <stl:ShortText>ERR.SWS.HOST.ERROR_IN_RESPONSE</stl:ShortText> 
    </stl:SystemSpecificResults> 
    </stl:Error> 
</stl:ApplicationResults> 
</HotelRateDescriptionRS></soap-env:Body></soap-env:Envelope> 

特定の料金プラン候補に渡し:

<RatePlanCandidates> 
     <RatePlanCandidate CurrencyCode="USD" DCA_ProductCode="J1KB93"/> 
    </RatePlanCandidates> 

RPH値だけを渡すと:

<RatePlanCandidates> 
     <RatePlanCandidate CurrencyCode="USD" RPH="004" /> 
    </RatePlanCandidates> 

私は有効な応答を得ますが、応答にDCA_CancellationまたはRoomRate情報は含まれません。

私はここにドキュメントのI-HRDに関するいくつかの情報を参照してください。私たちも、予約の処理を継続するHotelRateDescriptionRSからの情報を必要としない、ということを考えるとhttps://developer.sabre.com/docs/read/soap_apis/hotel/search/hotel_rate_description

を?情報が返されずにPassengerDetailsRQとOTA_HotelResRQを続けるだけで、この部分をスキップできますか?

HotelRateDescriptionLLSRQ要求:

<HotelRateDescriptionRQ 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.2.0"> 
     <AvailRequestSegment> 
     <GuestCounts Count="2"/> 
     <HotelSearchCriteria> 
     <Criterion> 
      <HotelRef HotelCode="0111622"/> 
     </Criterion> 
     </HotelSearchCriteria> 
     <RatePlanCandidates> 
     <RatePlanCandidate CurrencyCode="USD" DCA_ProductCode="J1KB93"/> 
     </RatePlanCandidates> 
     <TimeSpan End="03-14" Start="03-10" /> 
     </AvailRequestSegment> 
    </HotelRateDescriptionRQ> 

HotelPropertyDescriptionLLSRQ要求

 <HotelPropertyDescriptionRQ xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" Version="2.0.1"> 
     <AvailRequestSegment> 
      <GuestCounts Count="2" /> 
      <HotelSearchCriteria> 
       <Criterion> 
        <HotelRef HotelCode="0111622" /> 
       </Criterion> 
      </HotelSearchCriteria> 
      <TimeSpan Start="03-10" End="03-14" /> 
     </AvailRequestSegment> 
     </HotelPropertyDescriptionRQ> 

答えて

2

あなたが言及したように、これは最も可能性の高いI-HRDの機能に関連しています。アプリの要件にこの機能が必要な場合は、その機能をSaberアカウントマネージャーに有効にするようにリクエストできます。

HotelRateDescriptionLLSRQのステップをスキップすることについては、いくつかの料金はそうすることを可能にしますが、他のものはあなたが販売する前にそれらを表示する必要があります。これまでにルールを表示していなかった場合、これらの料金は売却時にエラーを返します。

+0

一部のプロパティでHotelRateDescriptionLLSRQが必要な場合は、i-HRDをデフォルトで有効にしないでください。これは物事を行う奇妙な方法のようです。 – systematical

+0

いいえ、最も一般的なワークフローはOTA_HotelAvailLLSRQ(HOT)/ HotelPropertyDescriptionLLSRQ(HOD)/ HotelRateDescriptionLLSRQ(HRD)/ OTA_HotelResLLSRQ(0H)です。 これらの手順を実行する場合、独立したHRDは必要ありません。 – Bruno

+0

しかし、私はこのホテルのために戻って何も得ていませんHotelRateDescriptionLLSRQ RPHを使用して... – systematical

関連する問題