from json get response but soap zero records

前端 未结 1 1474
不思量自难忘°
不思量自难忘° 2021-01-26 18:15

I am using an api for getting the data but when i use the json i get the data with the following code

string apiKey = Connection.AppSettings(\"APIKey\");
               


        
相关标签:
1条回答
  • 2021-01-26 18:52

    Thanks to hotelsPro.com support team . Finally i got answer from them that i am making three rooms in this soap request but sending data only for two .

    so i need to change this line

    pax[][] rooms = new pax[3][];
    

    into

    pax[][] rooms = new pax[2][];
    

    and now i am getting response from soap also. once again to thanks hotelsPro.com support team.

    0 讨论(0)
提交回复
热议问题