What is wrong with XPath query in SOAP response
You need to define prefix for http://schemas.livebookings.net/Ingrid/version2/2007/06/
namespace in your XPath engine, e.g. prefix a
, then:
//a:Availability
It will select a:Availability
element.
Or you can use this XPath:
//*[local-name() = 'Availability']