best solution

Erum Mirza 6 Reputation points
2023-09-01T08:32:16.6566667+00:00

i am building an application in which one of the part is calendar updates , push notification ,

i am wondering what is best way/architectural pattern/technologies are best suited for this scenario . I am a .net developer .if possible kindly guide me on same platform

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,400 questions
{count} votes

2 answers

Sort by: Most helpful
  1. JasonPan - MSFT 4,811 Reputation points Microsoft Vendor
    2023-09-04T12:49:52.7666667+00:00

    Hi @Erum Mirza,

    Bruce answer is helpful. We can implement this feature in asp.net core(recommended, asp.net not recommended).

    Asp.net core signalr provides real-time communication capabilities based on WebSockets. If the number of users is very large, we can consider migrating to Azure SignalR, which is very simple and requires only one line of code.

    And we also have some related service like Notification Hubs. If you have any other questions, please let me know.

    Best Regards

    Jason

    2 people found this answer helpful.
    0 comments No comments

  2. Bruce (SqlWork.com) 61,731 Reputation points
    2023-09-01T15:57:18.7333333+00:00

    For an asp.net website to implement real-time notification requires writing client code in JavaScript. To communicate you can use:

    • ajax polling
    • websockects
    • signal/r library