-
Hi @mythz I'm currently using SS server sent events. With all the action from SS where asp.net identity is now supported within SS I'm wondering if there are any plans in the future to move to signalr also? Basically SignalR SSE is now very similar to SS SSE especially now that asp.net identity auth are also used in SS. var hubConnection = new HubConnectionBuilder() What's your current view regarding SignalR and SS SSE regarding future integration with products like Aspire. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The primary reason behind switching to Identity Auth, ASP .NET Core IOC, Endpoint Routing, System.Text.Json, etc. is so it integrates fully with ASP .NET Core IOC Apps so you can mix and choose whatever technology you like without conflicts. There's nothing to "Move to" with SignalR, it's a different client and server implementation operating at a different endpoint, you should be able to use it the same way it's used everywhere else. We don't intend to develop our own client for it, you'd continue using Microsoft's recommended SignalR client for the platform you want to use it from. We've started looking at Aspire, IMO it's only useful for developing distributed App's which none of our templates really target so we're not sure what deliverables we'll have for it yet, whether it's just a Demo App or Blog Post or Video, etc. |
Beta Was this translation helpful? Give feedback.
The primary reason behind switching to Identity Auth, ASP .NET Core IOC, Endpoint Routing, System.Text.Json, etc. is so it integrates fully with ASP .NET Core IOC Apps so you can mix and choose whatever technology you like without conflicts.
There's nothing to "Move to" with SignalR, it's a different client and server implementation operating at a different endpoint, you should be able to use it the same way it's used everywhere else. We don't intend to develop our own client for it, you'd continue using Microsoft's recommended SignalR client for the platform you want to use it from.
We've started looking at Aspire, IMO it's only useful for developing distributed App's which none of our t…