POST request body is an empty string during service invocation between Dapr sidecars

I have deployed two services on Container Apps, both setup using Fastify, both with Dapr enabled.

I cannot seem to get the POST requests between the two services working. If Service A make a POST request with a request body to Service B, the request.body turns out to be an empty string in Service B.

However, if I invoke the POST route of Service B directly on Postman with a JSON request body. It works fine.

I cannot figure the reason why.

My dapr version is:

CLI version: 1.13.0
Runtime version: 1.13.5

And advice is appreciated !

Expected Behavior

Services can invoke POST requests between them and can pass the request body from the caller service to the receiver service.

Actual Behavior

The Expense Service tries to call the Notification Service. It works fine locally. But after deployed to Azure Container Apps, the request body is an empty string.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>// expense service
import Fastify from "fastify";
import fetch from "node-fetch";
const fastify = Fastify({
logger: true,
});
const DAPR_HOST = process.env.DAPR_HOST || "http://localhost";
const DAPR_HTTP_PORT = process.env.DAPR_HTTP_PORT || "3500";
fastify.post("/expense/new", async function handler(request, reply) {
try {
const { body } = request;
const resp = await fetch(`${DAPR_HOST}:${DAPR_HTTP_PORT}/test`, {
method: "POST",
headers: {
"dapr-app-id": "notification-service",
"content-type": "application/json",
},
body: JSON.stringify(body),
});
const data = await resp.json();
reply.send(data);
} catch (err: any) {
console.error(err);
reply.code(500).send({ error: err.message });
}
});
try {
await fastify.listen({ host: "0.0.0.0", port: 3000 });
} catch (err) {
fastify.log.error(err);
process.exit(1);
}
</code>
<code>// expense service import Fastify from "fastify"; import fetch from "node-fetch"; const fastify = Fastify({ logger: true, }); const DAPR_HOST = process.env.DAPR_HOST || "http://localhost"; const DAPR_HTTP_PORT = process.env.DAPR_HTTP_PORT || "3500"; fastify.post("/expense/new", async function handler(request, reply) { try { const { body } = request; const resp = await fetch(`${DAPR_HOST}:${DAPR_HTTP_PORT}/test`, { method: "POST", headers: { "dapr-app-id": "notification-service", "content-type": "application/json", }, body: JSON.stringify(body), }); const data = await resp.json(); reply.send(data); } catch (err: any) { console.error(err); reply.code(500).send({ error: err.message }); } }); try { await fastify.listen({ host: "0.0.0.0", port: 3000 }); } catch (err) { fastify.log.error(err); process.exit(1); } </code>
// expense service

import Fastify from "fastify";
import fetch from "node-fetch";

const fastify = Fastify({
  logger: true,
});

const DAPR_HOST = process.env.DAPR_HOST || "http://localhost";
const DAPR_HTTP_PORT = process.env.DAPR_HTTP_PORT || "3500";

fastify.post("/expense/new", async function handler(request, reply) {
  try {
    const { body } = request;

    const resp = await fetch(`${DAPR_HOST}:${DAPR_HTTP_PORT}/test`, {
      method: "POST",
      headers: {
        "dapr-app-id": "notification-service",
        "content-type": "application/json",
      },
      body: JSON.stringify(body),
    });

    const data = await resp.json();
    reply.send(data);
  } catch (err: any) {
    console.error(err);
    reply.code(500).send({ error: err.message });
  }
});

try {
  await fastify.listen({ host: "0.0.0.0", port: 3000 });
} catch (err) {
  fastify.log.error(err);
  process.exit(1);
}
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>// notification service
import Fastify from "fastify";
const fastify = Fastify({
logger: true,
});
fastify.addContentTypeParser(
"application/json",
{ parseAs: "string" },
function (req, body: any, done) {
try {
// console.log("RAW: ", body);
console.log("wtf");
done(null, body);
} catch (err: any) {
err.statusCode = 400;
done(err, undefined);
}
}
);
fastify.post("/test", async function handler(request, reply) {
console.log(request.body); // <-- this is an empty string on Azure Container Apps, but works fine locally
reply.send({ body: request.body });
});
try {
await fastify.listen({ host: "0.0.0.0", port: 3001 });
} catch (err) {
fastify.log.error(err);
process.exit(1);
}
</code>
<code>// notification service import Fastify from "fastify"; const fastify = Fastify({ logger: true, }); fastify.addContentTypeParser( "application/json", { parseAs: "string" }, function (req, body: any, done) { try { // console.log("RAW: ", body); console.log("wtf"); done(null, body); } catch (err: any) { err.statusCode = 400; done(err, undefined); } } ); fastify.post("/test", async function handler(request, reply) { console.log(request.body); // <-- this is an empty string on Azure Container Apps, but works fine locally reply.send({ body: request.body }); }); try { await fastify.listen({ host: "0.0.0.0", port: 3001 }); } catch (err) { fastify.log.error(err); process.exit(1); } </code>
// notification service

import Fastify from "fastify";

const fastify = Fastify({
  logger: true,
});

fastify.addContentTypeParser(
  "application/json",
  { parseAs: "string" },
  function (req, body: any, done) {
    try {
      // console.log("RAW: ", body);
      console.log("wtf");
      done(null, body);
    } catch (err: any) {
      err.statusCode = 400;
      done(err, undefined);
    }
  }
);

fastify.post("/test", async function handler(request, reply) {
  console.log(request.body); // <-- this is an empty string on Azure Container Apps, but works fine locally
  reply.send({ body: request.body });
});

try {
  await fastify.listen({ host: "0.0.0.0", port: 3001 });
} catch (err) {
  fastify.log.error(err);
  process.exit(1);
}

I tried using the dapr CDK clients and server but they resulted in the same problem.

New contributor

Yick Kiu Liam Leung is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật