I'm currently attempting to write two applications in C# - a client and a server - which connect to a WCF Relay I've got set up in Azure, but I'm getting a really strange error when I try to run either.
This is a brand new WCF Relay that I've set up which has no naming conflicts with anything else, but every time I try to open a connection to it as a listener with my service, it fails with this exception:
System.ServiceModel.AddressAlreadyInUseException: Address sb://[MY_RELAY].servicebus.windows.net/[MY_WCF_RELAY] is already in use by an existing listener with different settings.
And when I try to run my client application connecting to the same relay URL, I get this exception:
System.ServiceModel.FaultException: '50200: There are no listeners connected for the endpoint.
Kind of odd how there's already a listener connected, but at the same time no listeners are connected. I've even checked on the number of active connections to the relay, and it's never jumped past 0.
Anybody have any clue what might be going on here and how I could troubleshoot? Thanks!