-
Notifications
You must be signed in to change notification settings - Fork 10.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Epic] SignalR should have a C++ client #5301
Comments
cc @anurse |
List of possible work items, issues can be created from these once we decide which ones we will be implementing and importance:
|
Let's do an API review next week. @BrennanConroy can you schedule something? |
I missing this ❤️ thanks all! |
That is what the second item on the list is
|
Manually make a request to your server to the /negotiate endpoint, get the response which should be |
https://some-random-signalr.service.signalr.net is not your endpoint base. The server that you host that calls |
It's important to note how the SignalR Service works. It's designed to be completely transparent to the client configuration:
app.UseAzureSignalR(routes =>
{
routes.MapHub<MyHub>("/myhub");
}
A brief diagram of these three steps: |
I don't know what might be going wrong there. It's a little strange that you're specifying half the querystring ( |
I started work on making the client work with the service a while ago. If you're comfortable changing the signalr client source code you can copy what I did here: aspnet/SignalR@8b09728 |
I'm afraid we don't have much in the way of resources to work on C++ right now. As @BrennanConroy mentioned we have some prototype code, but we're busy with other stuff right now and not really able to put together a complete example.
You can debug through the SignalR client code, right? |
Not saying we're officially committed to the C++ client story but we are considering it for the 3.0 time frame. As well as other potential new clients. |
Our priorities have changed and I can't guarantee that this will ship in the 3.0 release. https://github.com/aspnet/SignalR-Client-Cpp is where we will be doing work on the C++ client. Feel free to test it out and file issues in this repo. |
|
No, the Hub Proxy mechanism is no longer present in the SignalR client. Instead you call |
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process. |
The text was updated successfully, but these errors were encountered: