Forum Discussion
smba.trafficmanager.net REQUEST_SEND_ERROR problem
- May 28, 2025
Hi,
I fixed the problem. The problem occurred because of high number of requests (every 1 sec) to smba.trafficmanager.net by calling statement below in the code, during REST API call period.
await stepContext.context.sendActivity({ type: 'typing' });
So, firewall thinks that it is an attack and blocks to send data to after a while. I recommend send this signal every 3 secs.
Best regards,
Orkun Gedik
Hello orkungedik,
Thank you for your inquiry about your Teams app development issue! To assist you better, could you please provide the following details?
Reproduction Steps: Please share the steps you took to encounter the issue.
Documentation Links: Any specific documentation you followed that relates to your problem.
Teams Client Version: What version of the Teams client are you using?
Code Snippets: Relevant code snippets that illustrate the issue.
Manifest Package: If applicable, please share the manifest package for your app.
This information will help us better understand the situation and provide a more accurate response.
- orkungedikMay 28, 2025Copper Contributor
Hi,
I fixed the problem. The problem occurred because of high number of requests (every 1 sec) to smba.trafficmanager.net by calling statement below in the code, during REST API call period.
await stepContext.context.sendActivity({ type: 'typing' });
So, firewall thinks that it is an attack and blocks to send data to after a while. I recommend send this signal every 3 secs.
Best regards,
Orkun Gedik