I've installed Service Bus for Windows Server on Server 2012. I'm trying to use the "Service Bus Explorer" management GUI to manage queues/topics.
I'm connecting to my service namespace by using the endpoint connection generated by the following PowerShell command:
Get-SBClientConfiguration -Namespaces 'MyNamespace' -Verbose;
Which generates:
Endpoint=sb://MyMachine/MyNamespace;StsEndpoint=https://MyMachine:9355/MyNamespace;RuntimePort=9354;ManagementPort=9355
And I am able to connect successfully.
PROBLEM:
In the Service Bus Explorer GUI, when I try to create a queue or topic, I get the following error in the Log output:
Exception: Object reference not set to an instance of an object.
Is there something I'm missing? I've gone through every Service Bus 1.0 setup guide I could find and everything seems to be in order with my installation.