I have simple code similar to this strewn through my application:
new XmlDocument().Load("https://mybookingpal.com/xml/rest/product/organization/5?pos=" + "a3a2e74b809e0e87");
The above is the new domain, the old domain is:
new XmlDocument().Load("https://razor-cloud.com/xml/rest/product/organization/5?pos=" + "a3a2e74b809e0e87");
You can try both Urls and see they work fine / produce the same XML results.
Something has presumably changed in the SSL which is now preventing the .Load() from functioning. I have two questions:
- What is causing the failure, so I can try get it fixed in one place (on the API server)?
- How do I fix the client code?