我正在使用Sabre的soap,并试图使用GetHotelImageRQ获取酒店映像。以下是我的请求xml:
<GetHotelImageRQ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0.0">
<HotelRefs xmlns="http://services.sabre.com/hotel/image/v1">
<HotelRef HotelCode="0027857" CodeContext="Sabre"/>
</HotelRefs>
<ImageRef xmlns="http://services.sabre.com/hotel/image/v1" Type="THUMBNAIL" CategoryCode="1" LanguageCode="EN"/>
</GetHotelImageRQ>但是,我得到了以下错误:服务GetHotelImageRQ:GetHotelImageRQ:1.0.0未找到
我不知道出了什么问题,我的请求与模式相匹配。谢谢你的帮助。
发布于 2017-06-05 18:07:01
尝试从信封中移除Service节点,或在其中发送一个空值。
<Service />https://stackoverflow.com/questions/44372960
复制相似问题