2

我的操作系统是 Windows 2012 Essentials。

我使用安装程序安装了 NServiceBus 4,然后安装了 Service Insight。
接受默认设置。

当我启动 Service Insight 时,连接到管理服务时出错。我试过输入,http://localhost:3333但错误是 404。我已经验证服务“特定管理”正在运行。

编辑

按照 Hadi 的说明,我已将他列出的 url: 粘贴http://localhost:33333/apiConnect to Management Service -> Service URL文本框中,但仍然出现 404 not found 错误。当我尝试将 URL 放入 google chrome 时,我也得到了 404(图形由 oatmeal 提供)。

我已经验证了一个名为的服务Particular Management正在运行。服务的描述是Particular Management Service for NServiceBus (Version 4.0.5)

我再次运行安装程序以进入修改/修复/删除选项,并在修改选项中验证已安装管理服务。

是否应该有一个不同的服务称为Management Service?这可能是 4.0.5 版引入的问题吗?

编辑 2 我已将额外内容附加/到网址的末尾,但仍然没有骰子。这是日志信息。

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
4

2 回答 2

0

服务控制的 URL(又名管理服务)也需要 /api,例如http://localhost:33333/api(你错过了 3?)。归根结底,它也是一个 NServiceBus 宿主进程,因此您需要检查并确保它确实在运行(使用任务管理器或服务)。

于 2013-10-10T07:28:46.203 回答
0

最后需要斜线:
http://localhost:33333/api/

于 2013-10-10T23:15:32.530 回答