Latest version of .net8, CMS 12.28, FIND 16.1
MVC + Blazor + FIND
If you run FIND in the context of blazor server side, the request to FIND is never getting any answer back.... is this known?
//runs on click thru blazor socket magic, in a blazor component server side
var searchResult = client.Search<ArticlePage>().GetContentResult();
no errors, blazor UI freezing, no response
In log:System.Net.Http.HttpClient.HttpClientWithAutoDecompression.ClientHandler: Information: Sending HTTP request POSThttps://demo02.find.episerver.net/ZLs1....pKmzUWRa/gosso_20240326/_search
My guess is that the Blazor Server scope then the whole session is in a SignalR connection and you probably get things added for a traditional MVC request that FIND is needed.
In log:System.Net.Http.HttpClient.HttpClientWithAutoDecompression.ClientHandler: Information: Sending HTTP request POSThttps://demo02.find.episerver.net/ZLs1....pKmzUWRa/gosso_20240326/_search
My guess is that the Blazor Server scope then the whole session is in a SignalR connection and you probably get things added for a traditional MVC request that FIND is needed.