I've written a basic Hello World application using Azure Service Bus and everything works fine.
Now, I have to test PCI compliance on the machine that will be using the Azure Service Bus. One of the requirements for PCI compliance is to disable TLS 1.0. Unfortunately, as soon as I do that my Hello World application fails with the following exception:
"An unhandled exception of type 'Microsoft.ServiceBus.Messaging.MessagingCommunicationException' occurred in Microsoft.ServiceBus.dll
Additional information: A call to SSPI failed, see inner exception."
To be clear, the only thing that changed between working and not working is disabling TLS 1.0 on the host machine and I am not sure what to do to correct this.