I cannot find the WSDL. I always get "Forbidden"
Posted by Jeff Tweddale on 22 Aug 2011 05:33 PM

I cannot find the WSDL. I always get "Forbidden"



Browsing is not allowed in the production system, so when you move from TEST to PRODUCTION, you need to have specific calls.

All files and WSDLs are all in the same places , however only ssl connections are allowed and directory browsing is not allowed in the production system

So if in TEST you had

$nusoapclient = new soapclient(http://ws-server-test.bookingcenter.com/wsdl/OTA_HotelInvSync.wsdl';, true);

In PRODUCTION you would have

$nusoapclient = new soapclient(https://ws.bookingcenter.com/wsdl/OTA_HotelInvSync.wsdl'">https://ws.bookingcenter.com/wsdl/OTA_HotelInvSync.wsdl';, true);

So if you hit this URL, you will see the wsdl

https://ws.bookingcenter.com/wsdl/OTA_HotelInvSync.wsdl
(2 vote(s))
Helpful
Not helpful