【问题标题】:keep getting ERR.SWS.CLIENT.VALIDATION_FAILED exception when calling PassengerDetailsRQ调用PassengerDetailsRQ时不断收到ERR.SWS.CLIENT.VALIDATION_FAILED异常
【发布时间】:2017-12-31 14:46:49
【问题描述】:

我在 C# 中使用 Sabre 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 中给出的请求中的参数。

这是我发送给 Saber 并获取异常的 xml

<?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>

【问题讨论】:

    标签: c# api soap air sabre


    【解决方案1】:

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

    【讨论】:

      猜你喜欢
      • 2013-10-21
      • 1970-01-01
      • 2011-05-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多