2017-02-14 2 views
1

を失敗しました:AccessQueue QR処置エラー

<QueueAccessRQ Version="2.0.7" xmlns="http://webservices.sabre.com/sabreXML/2011/10"><Navigation Action="QR" ></Navigation><QueueIdentifier PseudoCityCode="XXXX" Number="101" ></QueueIdentifier></QueueAccessRQ> 

応答は次のとおりです。

<?xml version="1.0" encoding="UTF-8"?> 
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"><soap-env:Header><eb:MessageHeader xmlns:eb="http://www.ebxml.org/namespaces/messageHeader" eb:version="1.0" soap-env:mustUnderstand="1"><eb:From><eb:PartyId eb:type="URI">webservices.sabre.com</eb:PartyId></eb:From><eb:To><eb:PartyId eb:type="URI">sample.url.of.sabre.client.com</eb:PartyId></eb:To><eb:CPAId>XXXX</eb:CPAId><eb:ConversationId>convId</eb:ConversationId><eb:Service>QueueAccessLLSRQ</eb:Service><eb:Action>QueueAccessLLSRS</eb:Action><eb:MessageData><eb:MessageId>XXXX</eb:MessageId><eb:Timestamp>2017-02-14T10:18:04</eb:Timestamp><eb:RefToMessageId>1000</eb:RefToMessageId></eb:MessageData></eb:MessageHeader><wsse:Security xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/12/secext"><wsse:BinarySecurityToken valueType="String" EncodingType="wsse:Base64Binary">XXXX</wsse:BinarySecurityToken></wsse:Security></soap-env:Header><soap-env:Body><QueueAccessRS 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" xmlns:stl="http://services.sabre.com/STL/v01" Version="2.0.7"> 
<stl:ApplicationResults status="NotProcessed"> 
    <stl:Error type="BusinessLogic" timeStamp="2017-02-14T04:18:04-06:00"> 
    <stl:SystemSpecificResults> 
    <stl:Message>QH NOT AVAILABLE FOR THIS PNR</stl:Message> 
    <stl:ShortText>ERR.SWS.HOST.ERROR_IN_RESPONSE</stl:ShortText> 
    </stl:SystemSpecificResults> 
    </stl:Error> 
</stl:ApplicationResults> 
</QueueAccessRS></soap-env:Body></soap-env:Envelope> 

誰かが起こっていただきました!知っていますか?

ありがとうございます。

答えて

2

あなたが現在行っている作業は、作業領域にあるPNRを1つのキューから削除することです。この場合、PCC XXXXのキュー101からPNRを削除しようとしています。

このエラーが発生する理由は、作業領域がPNRでないことです。

あなたは再びこれを試みてもよく、1つ
応答2の 失敗を取得する必要があることをしたら:PNR ON要求されていないQUEUE
成功:PROGRESS

+0

キューの除去は、あなたが@Wisdoomありがとうございます! – RJS11