Get the source code for this video for FREE → the-dotnet-weekly.ck.page/signalr-notifications Want to master Clean Architecture? Go here: bit.ly/3PupkOJ Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt
@alexdobrynin Жыл бұрын
may we have link to this code?
@chadelz8 күн бұрын
Clear, concise and to the point. Really well done video and nothing more you could really need to learn SignalR. Thanks for this!
@MilanJovanovicTech8 күн бұрын
You're very welcome!
@LordMuro Жыл бұрын
Thank you, Milan, for the great video! I have a suggestion for your next one: gRPC server-side streaming and Blazor WebAssembly.
@MilanJovanovicTech Жыл бұрын
Thanks for the idea!
@davidjackson1483 ай бұрын
Thanks for this. I'm new to signalr, was a bit over complicated for my needs, but I manage to strip out what I didnt need and got it working, so thats for the head start :)
@MilanJovanovicTech3 ай бұрын
I have a getting started video also :)
@davidjackson1483 ай бұрын
@@MilanJovanovicTech oh thank you what's the link?
@Lagendy11 ай бұрын
This video showed how you can receive messages from server to client. Would also be nice if you could show how to make the communication two ways.
@MilanJovanovicTech11 ай бұрын
Will see, but I haven't done client side videos
@rafa_guitar Жыл бұрын
Thank you very much for this awesome quality channel and lessons Milan, happy to subscribe!
@MilanJovanovicTech Жыл бұрын
Welcome aboard!
@gurolgencel Жыл бұрын
Great video, It can integrate with a MAIU app and create push notifications for mobile devices ... Maybe future videos 😀
@MilanJovanovicTech Жыл бұрын
Doubt I'll ever cover MAUI 😅
@robertoacuna4667 Жыл бұрын
you are my hero men thank you so much for this video I have a project that need on background process sending to our UI using blazor as well and this video is very relevant.
@MilanJovanovicTech Жыл бұрын
Glad I could help!
@julius7824 Жыл бұрын
Amazing video, full of knowlegde
@MilanJovanovicTech Жыл бұрын
Glad it was helpful!
@EldonElledge Жыл бұрын
I really ALWAYS enjoy your videos. And this one like all of the others is great. I would caution flag about using the JWT Token when making calls from UI to APIs. From a security standpoint, we really should be using a Reference Token. The self-contained properties makes the JTW token a bit of a security risk here. But, they are still fine to use for service-to-service calls.
@MilanJovanovicTech Жыл бұрын
That's an interesting observation. I still see many systems using JWTs freely.
@EldonElledge Жыл бұрын
@@MilanJovanovicTech, I agree there are still many people showing this in their demos. It reminds me of how long it took everyone to stop showing the incorrect way to use the HttpClient. Even Microsoft was showing it the wrong way in their on demos and documentation. 😃
@VF7RM Жыл бұрын
What about Blazor Server? Could/Should I implement a SignalR client with Blazor server or does it make more sense using JS to create it? 🤔
@MilanJovanovicTech Жыл бұрын
Not sure how that will work, I'd look for some documentation
@IQEGO Жыл бұрын
I have the same question
@alexmadnix Жыл бұрын
Awseome Signal R and Awesome video~
@MilanJovanovicTech Жыл бұрын
Thanks a lot! :)
@rubberuk Жыл бұрын
Excellent video! Great starting point.
@MilanJovanovicTech Жыл бұрын
Thanks a lot!
@jamesevans6438 Жыл бұрын
Really great video Milan, much appreciated
@MilanJovanovicTech Жыл бұрын
Any time, glad I can provide some value :)
@crazyfox55 Жыл бұрын
Can you explain why you need CORS? Within the hub connection isn't there a way to get the current base URL of the website the user currently is on already, that way you don't have to hard code it?
@MilanJovanovicTech Жыл бұрын
CORS is there to allow the SignalR connection to happen between client and server applications
@crazyfox55 Жыл бұрын
I would expect the api and web app to be hosted at the same URL. But I see now that they are not. Why aren't they on the same URL?
@peteriehl8 ай бұрын
Is the OnInitializedAsync the best place to create the HubConnection? Could it be done in Program.cs and registered, in order to be injected into the page/pages that need the HubConnection?
@MilanJovanovicTech8 ай бұрын
It's the best place to _start_ the connection.
@peteriehl8 ай бұрын
@@MilanJovanovicTech Agreed, it is the best place to start the connection (after you've wired up the message consumption, but is there a better way to pass the base url in there? I'm comparing it to the registration of my http client using the value from the HostEnvironment.BaseAddress value that's on the WebAssemblyHostBuilder, which i do in the Program.cs.
@kodindoyannick53288 ай бұрын
Thank you, Milan for the amazing video.
@MilanJovanovicTech8 ай бұрын
My pleasure!
@sushilb7994 Жыл бұрын
Excellent video as always, Milan! Do you know connection limit with the default signal R hub?
@MilanJovanovicTech Жыл бұрын
Depends on your application server or backplane you are using. It can easily handle a few thousand concurrent connections.
@sushilb7994 Жыл бұрын
@@MilanJovanovicTech thanks Milan! I ran into concurrent connections issues my earlier project and we had to move to Azure Signal R hub.
@niel6939 Жыл бұрын
Amazing video! Do you have any suggestions on a package/library that could implement the same on a client that is still on Net Framework?
@MilanJovanovicTech Жыл бұрын
There's still the SignalR .NET Framework package
@romancalderon Жыл бұрын
Very useful video, thanks! BTW how did you enable that little emoji util window??
@MilanJovanovicTech Жыл бұрын
Windows button + .
@romancalderon Жыл бұрын
😱😤 ty@@MilanJovanovicTech
@feinirl Жыл бұрын
hey, nice video :=) Is this a custom theme u using for your visual studio or did you changed the colors? Looks amazing
@MilanJovanovicTech Жыл бұрын
R# syntax highlighting
@feinirl Жыл бұрын
@@MilanJovanovicTech how do i get that?
@davidjackson1482 ай бұрын
I already have a user token on my client. I get this from my API when I log in. How do I register that with SignalR ? So I can send a message specifically to that user?
@MilanJovanovicTech2 ай бұрын
There's a token factory argument when creating the hub connection. On the server, you can use the Users ID to send them a message: www.milanjovanovic.tech/blog/adding-real-time-functionality-to-dotnet-applications-with-signalr#sending-messages-to-a-specific-user
@davidjackson1482 ай бұрын
Sorted it. using the OnConnected and OnDisconnected events, with smattering of IHttpContextAccessor and it all works perfectly
@CRBarchager Жыл бұрын
11:35 Is that an add-on or a build in function in VS to get emojis?
@MilanJovanovicTech Жыл бұрын
Windows + .
@CRBarchager Жыл бұрын
@@MilanJovanovicTech You're awesome. Thank you!
@AbuBakrSadiqi-b7t2 ай бұрын
Please please, answer my below question, thanks in advance. I have one question, please help me. I have two microservices, A and B. and Ocelot gateway infront of them. both of those services are using signalr hubs. each have different urls. how I can use them in ocelot so I can have one url for both of them and use them in angular. only tell me the tools that I can use, or any hint.
@MilanJovanovicTech2 ай бұрын
Here's what Claude says: To address your situation with two microservices (A and B) using SignalR hubs behind an Ocelot API gateway, and your desire to use a single URL for both in Angular, here are some tools and hints that could help: Ocelot WebSockets support: Ocelot has built-in support for WebSockets, which is the underlying technology used by SignalR. You can configure Ocelot to route WebSocket connections. SignalR scale-out: Consider using a SignalR scale-out provider like Redis or Azure SignalR Service to handle multiple server instances. Sticky Sessions: Ensure your load balancer (if used) supports sticky sessions, as SignalR requires client requests to be routed to the same server. URL Rewriting: Use Ocelot's URL rewriting capabilities to map different hub URLs to a single endpoint. SignalR JavaScript client: In your Angular application, use the SignalR JavaScript client to connect to the unified endpoint provided by Ocelot. CORS configuration: Ensure proper CORS (Cross-Origin Resource Sharing) settings in both your microservices and Ocelot gateway. WebSocket routing in Ocelot: Configure WebSocket routing in your Ocelot configuration file to properly direct traffic to the correct microservice. SignalR Hub inheritance: Consider creating a base hub class that both of your microservices can inherit from to standardize some functionality. These tools and hints should provide a starting point for integrating your SignalR-based microservices behind Ocelot and accessing them through a single URL in your Angular application. Would you like me to elaborate on any of these points?
@miyanorozu8 ай бұрын
I published my SignalR Azure Function to Azure, but my client had a problem with connecting to SignalR. It shows 401 error which was not found when I tested it locally and I think maybe I missed something to do with authorization?
@MilanJovanovicTech8 ай бұрын
Does it work without authorization from Azure Functions?
@miyanorozu8 ай бұрын
@@MilanJovanovicTech I change the AuthorizationLevel and then it works now. Thanks!
@shahidnoor1984 Жыл бұрын
Sir i have confusion about how to get this connectionId from outside of the hub class
@MilanJovanovicTech Жыл бұрын
Use the User ID instead
@vrnz29 ай бұрын
Amazing! Work's worderfull! Thank's a lot!
@MilanJovanovicTech9 ай бұрын
Glad it helped!
@vrnz29 ай бұрын
@@MilanJovanovicTech i'm still have a little doubt. I'm get a instance of IHubContext from dependency injection in a web api controller but when I try to send a message doesn't work. Inspecting the context that I got from class constructor, I inspect the private methods and observe that don't have any connections associated to it. I reviewed my DI process to ensure it same of your example code and both are equals. Do you have a tip for me to find de error? Thank you so much!
@williangalvez464810 ай бұрын
Hi there nice lesson thank you so much, I have an little isssue with duplicated signalr messages. Have you ever seen this? thank you again 🙌
@MilanJovanovicTech10 ай бұрын
No idea how that is happening
@YehorBachurinDev9 ай бұрын
Thank you very much, Milan
@MilanJovanovicTech9 ай бұрын
Happy to help :)
@narantsatsraltdavaadorj47286 ай бұрын
Amazing video, full of knowledge
@MilanJovanovicTech6 ай бұрын
Glad it was helpful!
@PritamPaul-y1h4 ай бұрын
do i need to add any nuget packages in api side also?
@MilanJovanovicTech4 ай бұрын
SignalR. You can grab the source code from the pinned comment.
@franciscolacerda6668 ай бұрын
Ok, but how to you pass the userId to ServerTimeNotifier (which is a singleton) without hardcoding the userId. Most of the injection of authorization and authentication midlewares are scoped. Or am I looking at this the wrong way? Still, great content! Cheers.
@MilanJovanovicTech8 ай бұрын
Yeah - let's say that job wants to target a specific set of users. We could insert a set of notifications/message records to the database that contain the User ID. Then in the background job, we can fetch a batch of notifications and sent them to the appropriate user.
@franciscolacerda6668 ай бұрын
@@MilanJovanovicTech Thanks for the reply. Will try it. Once again, congrats for the content. Cheers!
@SonuKumar-ur5tn8 ай бұрын
Hi Milan, if I have multiple agent connect with same hub but condition is agent not maintain presistent connection it's connected hub in every 15 min after some time disconnected, and my admin page connected with hub in request basics how to maintain these connection based on connection id or based on user Id , please provide some solution about that
@MilanJovanovicTech8 ай бұрын
SignalR does all that automatically
@yogij1711 ай бұрын
Thanks a lot Milan Can we use signalr with web api?
@MilanJovanovicTech11 ай бұрын
Yes
@agnieszkagrzymska86727 ай бұрын
Why are you using two separate projects for the api and the client? Can't it all be done in one?
@MilanJovanovicTech7 ай бұрын
Because it's two separate applications? ASP.NET Core and Blazor
@andredamasoslb Жыл бұрын
Could do similar with graphql and subscriptions
@MilanJovanovicTech Жыл бұрын
Cool!
@parsalotfyАй бұрын
do you have a video about background service?
@MilanJovanovicTechАй бұрын
Check out Quartz: kzbin.info/www/bejne/n3WWm6WgaLd1q8U
@parsalotfyАй бұрын
@@MilanJovanovicTech your videos are perfect
@parsalotfyАй бұрын
@@MilanJovanovicTech thank you
@EverythingAndDaily Жыл бұрын
How to watch real-time data inserted in the database table without using a timer? As soon as new records are inserted, I want to get an update on front end.
@friedohonyiglo8009 Жыл бұрын
It is possible for sql server but i'm not sure for other databases. Search SqlTableDependency.
@anilkarasahh Жыл бұрын
Rather than using a BackgroundService, you can send a signal inside the corresponding endpoint, maybe 🤔 Front-end can listen and react to it.
@matthewrossee Жыл бұрын
When db transaction is executed successfully, then you can send a notification to your client. When applying DDD, you can take advantage of domain event handlers that are executed by the SaveChanges interceptor in EF Core, or invoke notification directly from your service/command
@sergiobazan1095 Жыл бұрын
@MilanJovanovicTech can you make a video on this please? It'll be very usefull
@MilanJovanovicTech Жыл бұрын
Use a database that already supports something like this. Supabase has subscriptions for example, and it's a PostgreSQL database under the hood.
@mtranchi Жыл бұрын
11:35 How did you bring up that emoji dialog?
@MilanJovanovicTech Жыл бұрын
Windows + .
@zaferavc200311 күн бұрын
Thank you Bro
@MilanJovanovicTech11 күн бұрын
Any time
@arsenius48706 ай бұрын
thank you so much!)
@MilanJovanovicTech6 ай бұрын
You're welcome!
@sohrabhashed14889 ай бұрын
nice
@MilanJovanovicTech9 ай бұрын
Thanks
@loam6 ай бұрын
You mean Blyatzor?
@MilanJovanovicTech6 ай бұрын
Lol
@andrewbeeman842 ай бұрын
Yet another video that ignores the most obvious issue of using any kind of auth whatsoever with the signalR connection.