Using SignalR for my server and Angular for my client... When I run my client I receive these errors:
zone.js:2969 OPTIONS https://localhost:27967/chat/negot
I waste almost two days for this and finally figured out,
When this error occurs?
Why this error occurs?
The error occurs because new SignalR does not allow you to use old server & new client or new server & old client
It means if you create the SignalR server using .Net core then you must create the client using .Net Core
This was the issue in my case.