我的操作系统是Windows 2012 Essentials。
我使用安装程序安装了NServiceBus 4,然后安装了Service Insight。
接受默认设置。
启动service Insight时,出现有关连接到管理服务的错误。我试着输入http://localhost:3333,但错误输出到了404。我已经验证了“特定管理”服务正在运行。
编辑
按照Hadi的指示,我已经将他列出的url:http://localhost:33333/api粘贴到了Connect to Management Service -> Service URL文本框中,但它仍然有一个404not found错误。当我尝试将网址输入google chrome时,我也得到了404 (图片由燕麦片提供)。
我已经验证了一个名为Particular Management的服务正在运行。服务的描述是Particular Management Service for NServiceBus (Version 4.0.5)。
我再次运行安装程序以进入修改/修复/删除选项,并在修改选项中验证管理服务是否已安装。
是不是应该有一个不同的服务叫做Management Service?这可能是4.0.5版引入的问题吗?
编辑2我已经将额外的/附加到url的末尾,仍然没有骰子。这是日志记录信息。
2013-10-11 09:15:58,488 - [INFO ] - IManagementService - HTTP GET http://localhost:33333/api//
2013-10-11 09:15:58,501 - [DEBUG] - IManagementService - HTTP Status NotFound (404) (http://localhost:33333/api//http://localhost:33333/api)
2013-10-11 09:15:58,506 - [DEBUG] - IManagementService - Response Header: Transfer-Encoding : chunked
2013-10-11 09:15:58,507 - [DEBUG] - IManagementService - Response Header: X-Particular-Version : 1.0.0-unstable122
2013-10-11 09:15:58,508 - [DEBUG] - IManagementService - Response Header: Cache-Control : private, max-age=300, must-revalidate
2013-10-11 09:15:58,509 - [DEBUG] - IManagementService - Response Header: Content-Type : text/html
2013-10-11 09:15:58,529 - [DEBUG] - IManagementService - Response Header: Date : Fri, 11 Oct 2013 14:15:58 GMT
2013-10-11 09:15:58,533 - [DEBUG] - IManagementService - Response Header: Server : Microsoft-HTTPAPI/2.0
2013-10-11 09:15:58,536 - [ERROR] - IManagementService - Error executing the request: , Status code is NotFound发布于 2013-10-10 15:28:46
服务控制(也称为管理服务)的网址也需要/api,例如http://localhost:33333/api (你错过了3?)。归根结底,它也是一个NServiceBus主机进程,因此您需要检查并确保它确实在运行(使用任务管理器或服务)。
发布于 2013-10-11 07:15:33
您需要在末尾加上斜杠:
http://localhost:33333/api/
https://stackoverflow.com/questions/19277466
复制相似问题