signalr post hubs The specified policy origin 'localhost' is invalid. It must be correctly formed with the scheme, the host, and optionally, the port Hatası
Merhaba,
Asp.net signalr kullanıyorsanız ve client tarafında post ettiüiniz datanızdan
"signalr post hubs The specified policy origin 'localhost' is invalid. It must be correctly formed with the scheme, the host, and optionally, the port" hatası alıyorsanız yapmanı gereken iki şey vardır;
1- Startup.cs classınızda bulunan hub konfigirasyonunuzu aşağıdaki gibi yapmanız gerekmektedir.
2- client js dosyanızda connection hub startınıza jsonp:true eklemeniz gerekmektedir.
$.connection.hub.start({ jsonp: true });
İyi yazılımlar.
Asp.net signalr kullanıyorsanız ve client tarafında post ettiüiniz datanızdan
"signalr post hubs The specified policy origin 'localhost' is invalid. It must be correctly formed with the scheme, the host, and optionally, the port" hatası alıyorsanız yapmanı gereken iki şey vardır;
1- Startup.cs classınızda bulunan hub konfigirasyonunuzu aşağıdaki gibi yapmanız gerekmektedir.
2- client js dosyanızda connection hub startınıza jsonp:true eklemeniz gerekmektedir.
$.connection.hub.start({ jsonp: true });
İyi yazılımlar.
Yorumlar
Yorum Gönder