调用PassengerDetailsRQ时不断收到ERR.SWS.CLIENT.VALIDATION_FAILED异常

问题描述 投票:0回答:1

我在C#中使用Saber SOAP Api。我成功地从会话创建得到了响应,我将wsdl服务参考http://files.developer.sabre.com/wsdl/sabreXML1.0.00/ServicesPlatform/PassengerDetails3.3.0RQ.wsdl添加到我的测试项目中,并将所需的值传递给请求中的参数,如文档https://developer.sabre.com/docs/read/soap_apis/management/itinerary/Passenger_Details中所示。

这是我的xml发送到saber和Getting Exception

<?xml version="1.0" encoding="utf-16"?>
    <PassengerDetailsRQ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="2.2.1" 
    IgnoreOnError="false">
  <MiscSegmentSellRQ xmlns="http://services.sabre.com/sp/pd/v3_2">
    <MiscSegment DepartureDateTime="2018-01-10T16:45" InsertAfter="0" NumberInParty="1" Status="HK" Type="OTH">
      <OriginLocation LocationCode="SAN" />
      <Text>America Tours</Text>
      <VendorPrefs>
        <Airline Code="DL" />
      </VendorPrefs>
    </MiscSegment>
  </MiscSegmentSellRQ>
  <PostProcessing xmlns="http://services.sabre.com/sp/pd/v3_2">
    <EndTransactionRQ>
      <EndTransaction Ind="true">
        <Email Ind="true" />
      </EndTransaction>
      <Source ReceivedFrom="SWS TESTING" />
    </EndTransactionRQ>
  </PostProcessing>
  <PreProcessing xmlns="http://services.sabre.com/sp/pd/v3_2" />
  <PriceQuoteInfo xmlns="http://services.sabre.com/sp/pd/v3_2">
    <Link NameNumber="1.1" Record="1" />
  </PriceQuoteInfo>
  <SpecialReqDetails xmlns="http://services.sabre.com/sp/pd/v3_2">
    <SpecialServiceRQ>
      <SpecialServiceInfo>
        <SecureFlight>
          <PersonName DateOfBirth="02/02/1998" NameNumber="1.1">
            <GivenName>Usama QW</GivenName>
            <Surname>Alam</Surname>
          </PersonName>
          <VendorPrefs>
            <Airline />
          </VendorPrefs>
        </SecureFlight>
      </SpecialServiceInfo>
    </SpecialServiceRQ>
  </SpecialReqDetails>
  <TravelItineraryAddInfoRQ xmlns="http://services.sabre.com/sp/pd/v3_2">
    <AgencyInfo>
      <Address>
        <AddressLine>America Tours</AddressLine>
        <CityName>Los Angeles</CityName>
        <CountryCode>US</CountryCode>
        <PostalCode>90020</PostalCode>
        <StateCountyProv StateCode="CA" />
        <StreetNmbr>3434 West 6th Street Suite 400-6</StreetNmbr>
      </Address>
      <Ticketing TicketType="7T-A" />
    </AgencyInfo>
    <CustomerInfo>
      <ContactNumbers>
        <ContactNumber NameNumber="1.1" Phone="213-738-8185" PhoneUseType="A" />
        <ContactNumber NameNumber="1.1" Phone="3162881034" PhoneUseType="A" />
      </ContactNumbers>
      <Email Address="[email protected]" ShortText="AmericaTours" />
      <Email Address="[email protected]" ShortText="AmericaTours" />
      <PersonName NameNumber="1.1" NameReference="MR" PassengerType="ADT">
        <GivenName>Usama sd</GivenName>
        <Surname>Alam</Surname>
      </PersonName>
    </CustomerInfo>
  </TravelItineraryAddInfoRQ>
</PassengerDetailsRQ>
c# api soap air sabre
1个回答
2
投票

对于这个,您似乎使用3.2名称空间的无效服务版本。试试这样的事情:

*xmlns="http://services.sabre.com/sp/pd/v3_2"* and *version="3.2.0"*. 

您在此处使用的是2.2.1版,这将需要不同的URL。

你打算使用3.2.0版本吗?我可以看到日期根据模式也是无效的。你有:

*DateOfBirth="02/02/1998"*

但应该有:

*DateOfBirth="1998-02-02"*
© www.soinside.com 2019 - 2024. All rights reserved.