We have an azure sql database which has both ports 1433 and 443 opened. I can use SSMS to connect to the database but the application is getting intermittent response code 500 with the below
Message A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP Provider, error: 40 - Could not open a connection to SQL Server) Exception type System.Data.SqlClient.SqlException
and these errors pointed to port 443.
My question; Sql server by default listens to port 1433. When and what can cause the requests to go to port 443?
Thanks!