我已经在 Server 2012 上安装了用于 Windows Server 的服务总线。我正在尝试使用“服务总线资源管理器”管理 GUI 来管理队列/主题。
我正在使用以下 PowerShell 命令生成的端点连接连接到我的服务命名空间:
Get-SBClientConfiguration -Namespaces 'MyNamespace' -Verbose;
生成:
Endpoint=sb://MyMachine/MyNamespace;StsEndpoint=https://MyMachine:9355/MyNamespace;RuntimePort=9354;ManagementPort=9355
而且我能够成功连接。
问题:
在 Service Bus Explorer GUI 中,当我尝试创建队列或主题时,日志输出中出现以下错误:
Exception: Object reference not set to an instance of an object.
有什么我想念的吗?我已经浏览了所有我能找到的 Service Bus 1.0 安装指南,并且一切似乎都符合我的安装要求。