gpt4 book ai didi

asp.net-core - 无法使用 Dapr 调用其他服务

转载 作者:行者123 更新时间:2023-12-05 06:00:17 26 4
gpt4 key购买 nike

我在使用我的微服务启动和运行 Dapr 时遇到了重大问题。每次我尝试调用另一个服务时,它都会返回 500 错误消息

client error: the server closed connection before returning the first response byte. Make sure the server returns 'Connection: close' response header before closing the connection

服务和 dapr sidecars 目前在我们开发机器上的 docker-compose 中运行,但在正确部署后将在 Kubernetes 中运行。

当我查看 Docker for Windows 中 dapr 容器的日志时,我可以看到在端口 443 上发现了应用程序和一些初始化消息,但此后没有其他任何记录,即使我发出调用请求也是如此。

我有一个名为 clients 的容器,我在其中调用一个名为 test 的 API,然后尝试在另一个名为 simpleapi 的容器中调用 Microsoft 的示例天气预报 API。

我正在使用 swaggerUI 调用 API。测试 api 返回 200,但是当我在调用上放置断点时,我可以看到响应是 500。

如果我直接使用 swaggerui 调用 weatherforecast api,它会返回 200 和预期的负载。

我在容器中运行了 Dapr 仪表板,但它没有显示任何应用程序。

Docker-Compose.yml

version: '3.4'

services:
clients:
image: ${DOCKER_REGISTRY-}clients
container_name: "Clients"
build:
context: .
dockerfile: Clients/Dockerfile
ports:
- "50002:50002"
depends_on:
- placement
- database
networks:
- platform

clients-dapr:
image: "daprio/daprd:edge"
container_name: clients-dapr
command: [
"./daprd",
"-app-id", "clients",
"-app-port", "443",
"-placement-host-address", "placement:50006",
"-dapr-grpc-port", "50002"
]
depends_on:
- clients
network_mode: "service:clients"

simpleapi:
image: ${DOCKER_REGISTRY-}simpleapi
build:
context: .
dockerfile: SimpleAPI/Dockerfile
ports:
- "50003:50003"
depends_on:
- placement
networks:
- platform

simpleapi-dapr:
image: "daprio/daprd:edge"
container_name: simpleapi-dapr
command: [
"./daprd",
"-app-id", "simpleapi",
"-app-port", "443",
"-placement-host-address", "placement:50006",
"-dapr-grpc-port", "50003"
]
depends_on:
- simpleapi
network_mode: "service:simpleapi"

placement:
image: "daprio/dapr"
container_name: placement
command: ["./placement", "-port", "50006"]
ports:
- "50006:50006"
networks:
- platform

dashboard:
image: "daprio/dashboard"
container_name: dashboard
ports:
- "8080:8080"
networks:
- platform

networks:
platform:

从客户端 API 测试 Controller 。

[Route("api/[controller]")]
[ApiController]
public class TestController : ControllerBase
{
[HttpGet]
public async Task<ActionResult> Get()
{
var httpClient = DaprClient.CreateInvokeHttpClient();
var response = await httpClient.GetAsync("https://simpleapi/weatherforecast");
return Ok();
}
}

这对我的公司来说是一个重要的新项目,如果我们不能尽快让它工作,看起来我们将不得不放弃 Dapr 并自行实现所有内容。

我希望这里有一些明显的问题。

最佳答案

其实很简单。

我需要告诉 dapr 使用 ssl。clients-dapr 需要 -app-ssl 参数,因此 clients-dapr 应该如下所示(simpleapi-dapr 也需要添加相同的参数)

clients-dapr:
image: "daprio/daprd:edge"
container_name: clients-dapr
command: [
"./daprd",
"-app-id", "clients",
"-app-port", "443",
"-app-ssl",
"-placement-host-address", "placement:50006",
"-dapr-grpc-port", "50002"
]
depends_on:
- clients
network_mode: "service:clients"

关于asp.net-core - 无法使用 Dapr 调用其他服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67741216/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com