I have a WCF service that I wrote and is working fine in a production environment. However I am getting an error is a new test environment.
The service is being accessed by a Windows service running on the same server. When it attempts to send a request it receives a 503 response code with a message saying the service is unavailable.
However I have confirmed that the service is reachable by browsing to the auto-generated service information page and the WDSL. I can also send requests to it using SOAPUI.
All three clients (the app, the browser, and SOAPUI) are using the same base URL and all running locally on the same server.
I don't understand how the service can be unavailable to one client but be available to the others.
Both the web service and client (windows service) are written in c# in Visual Studio 2017 targeting .Net Framework 4.0 and running on a Win server 2016.
--Jacob