Share via

Failures sending messages back to users starting chats with bots from Microsoft Teams

Eric Richards 91 Reputation points
2026-03-24T18:05:49.2866667+00:00

Starting about 03/24/2026 12:30 EDT, all attempts to respond to incoming chat requests from Microsoft Teams users in our various Bot Framework bots started failing.

There's a whole array of error responses and exceptions raised, but we're seeing about 85-90% of requests made to smba.trafficmanager.net fail. Timeouts, bad gateway errors, socket errors, etc.

Requests that are coming in through the direct-line and webclient channels are not experiencing these problems, only those through the msteams channel.

Doesn't appear to be constrained to any specific Azure Bot; we are seeing basically complete failures with any attempts to send messages back to Teams users. This is across multiple entirely different bot codebases, as well. Trying to use some other Teams apps that have a bot component (Trello, Hubspot, others) and none of them are responding in Teams either.

Azure AI Bot Service
Azure AI Bot Service

An Azure service that provides an integrated environment for bot development.


1 answer

Sort by: Most helpful
  1. Sina Salam 28,361 Reputation points Volunteer Moderator
    2026-03-30T09:23:25.3166667+00:00

    Hello Eric Richards,

    Welcome to the Microsoft Q&A and thank you for posting your questions here.

    I understand that you're having failures sending messages back to users starting chats with bots from Microsoft Teams.

    The failure originated from a temporary Microsoft Teams service‑side disruption affecting the Bot Framework Connector endpoint (smba.trafficmanager.net), preventing outbound bot messages while inbound messages continued to flow normally.

    Since this type of connector degradation is not remediable through configuration or code changes, the correct approach is to validate service health, avoid modifying bot settings, apply temporary fallbacks, and resume normal operations once Microsoft completes restoration. This ensures operational continuity while adhering to Microsoft’s recommended recovery practices for Teams bot reliability.

    The remediation steps below will help you to fix the issue:

    1. Use the Microsoft 365 Admin Center service‑health portal and Microsoft’s public service‑status page to confirm active Teams‑related incidents impacting bot delivery. Microsoft 365 Service Health, and Microsoft Service Status
    2. Check whether outbound calls to the Microsoft‑managed Teams connector endpoint fail: https://smba.trafficmanager.net/ Common failure signals include 502, 504, or repeated socket timeouts. These conditions indicate platform‑side faults as defined in Microsoft Bot Connector networking documentation. - https://learn.microsoft.com/azure/bot-service/bot-service-resources-connectors>
    3. Do not regenerate secrets, modify Teams channel settings, or redeploy manifests. The inbound path functioning correctly confirms your bot configuration is intact. - https://learn.microsoft.com/microsoftteams/platform/bots/how-to/connect-bot-to-teams
    4. Use a soft‑failure response when outbound delivery fails: "Teams is currently experiencing delivery delays. Please try again shortly." If available in your architecture, route critical interactions through Direct Line or Web Chat, which operate independently of the Teams connector. - https://learn.microsoft.com/azure/bot-service/bot-service-channel-directline Also record outbound delivery failures for later reconciliation: Log(serviceUrl, conversationId, httpStatus, timestamp)
    5. Because connector outages are Microsoft‑side service incidents, remediation is completed solely by Microsoft engineering. Monitor service‑health notifications until recovery is published, you have to wait.
    6. After Microsoft resolves the incident:
      • Send proactive bot messages.
      • Confirm replies in Teams chats succeed.
      • Verify updated serviceUrl values in Activities.
      • Ensure 200 OK responses from smba.trafficmanager.net.

    I hope this is helpful! Do not hesitate to let me know if you have any other questions or clarifications.


    Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.