Soap request body using 'postman' chrome app

后端 未结 2 659
执念已碎
执念已碎 2021-02-01 05:50

How would the body of a soap request look like for the \'holiday web service\' (http://www.holidaywebservice.com/HolidayService_v2/HolidayService2.asmx?wsdl) using the Postman g

2条回答
  •  不要未来只要你来
    2021-02-01 06:46

    Your request could be something like this even:

    POST /HolidayService_v2/HolidayService2.asmx/GetHolidaysAvailable HTTP/1.1    
    Host: www.holidaywebservice.com
    Cache-Control: no-cache
    Content-Type: application/x-www-form-urlencoded
    
    countryCode=UnitedStates
    

提交回复
热议问题