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

keep getting ERR.SWS.CLIENT.VALIDATION_FAILED exception when calling PassengerDetailsRQ

我在 C# 中使用 Sabre SOAP Api。我成功地得到了会话创建的响应,我添加了 wsdl 服务参考 http://files.developer.sabre.com/wsdl/sabreXML1.0.00/ServicesPlatform/PassengerDetails3.3.0RQ.wsdl to my test project and pass required values to parameters in the request as given in the documentation https://developer.sabre.com/docs/read/soap_apis/management/itinerary/Passenger_Details.

这是我的 xml 发送到 saber 并获得异常

<?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="www.usamaalam60@gmail.com" ShortText="AmericaTours" />
      <Email Address="admin@koreaonly.com" ShortText="AmericaTours" />
      <PersonName NameNumber="1.1" NameReference="MR" PassengerType="ADT">
        <GivenName>Usama sd</GivenName>
        <Surname>Alam</Surname>
      </PersonName>
    </CustomerInfo>
  </TravelItineraryAddInfoRQ>
</PassengerDetailsRQ>

对于这个问题,您似乎对 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"*