dotnet / aspnetcore

ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
https://asp.net
MIT License
35.5k stars 10.04k forks source link

Blazor Server Side. JS doesn't start after a long downtime on mobile browsers. #23340

Closed rburnashev85 closed 2 years ago

rburnashev85 commented 4 years ago

23039 # Describe the bug

Blazor doesn't start after a long downtime on mobile browsers.

To Reproduce

1) Open any blazor server side site on chrome or firefox on android. For instance you can open this page https://demos.devexpress.com/blazor/ChartSeriesTypes 2) Minimize your browser and wait a few hours 3) Open the browser and with high propability you will see only prerendered page. All JS dynamic stuff doesn' work. No messages that you should update the page. If you follow some link on the page and then return back the page will still not work. The only way to restore its functionality is to refresh it manualy by clicking appropriate button in the browser.

P.S. Blazor Web Assembly sites restore without the issue.

Further technical details

captainsafia commented 4 years ago

Thanks for reporting this issue, @rburnashev85.

This is expected behavior. When the user has navigated away from the application, we disconnect the Blazor server circuit to conserve resources.

To resolve this issue, you can implement JavaScript to detect that a user has returned to the web page and reconnect.

@danroth27 Can you share the docs link to this?

danroth27 commented 4 years ago

I don't think we ever officially documented this, but a suggested approach for doing this here: https://github.com/dotnet/aspnetcore/issues/10325#issuecomment-537979717.

rburnashev85 commented 4 years ago

Thank you for the answers. I understand that after some time Blazor server closes the connection. I use the script from #10325 on my site. It works as expected when the reconnect button appears. But the issue I have writen about is not the same. After few hours of downtime on mobile browsers the reconnect button doesn't appear. It seems like JS doesn't work at all. I see only prerendered page. Maybe it is because mobile browsers use some tricky cache mechanism or because JS crashes at an early stage of page initialization. It is hard to investigate because the browsers don't have console.

I tried to host my site on Nginx and on Kestrel without any reverse proxy. Nothing changed. Then I opened different sites on internet which made with blazor server side on the same mobile browsers. And I see the same problem there.

It is interesting that blazor web assembly sites after the same downtime are reloaded. Mobile browsers seems to reset those tabs that have not been opened for a long time.

mkArtakMSFT commented 4 years ago

Thanks for contacting us. We're moving this issue to the Next sprint planning milestone for future evaluation / consideration. We will evaluate the request when we will planning the work for the next milestone. To learn more about what to expect next and how this issue will be handled you can read more about our triage process here.

rburnashev85 commented 4 years ago

I've made some additional investigation on the issue. I used PreRenderComponent and added to MainLayout

 @if (PreRenderFlag.IsPreRendering)
    {
        <a id="reload" class="reload" href="@NavigationManager.Uri">
         Connection to server is lost. Please refresh the page.
        </a>
    }

The tag has css with animation which shows it after 10 seconds. Thus if blazor doesn't go beyond prerendering this tag appears.

Also I've added js script which would reload the page automatically after 10 seconds if this tag exists. However it doesn't work. So I conclude that js in this situation unfortunatelly doesn't work at all.

SteveSandersonMS commented 4 years ago

I tried following the repro steps but it seemed to work fine. After navigating to https://demos.devexpress.com/blazor/ChartSeriesTypes and then leaving the browser minimized for some hours, on returning I did get the reconnect UI as expected:

Then, after tapping "Reload", the page did reload and start working as expected.

Do you have any further information about how to reproduce the problem?

rburnashev85 commented 4 years ago

1) Open demos.devexpress.com. 2) Close the browser completely. 3) Open it after few hours. In my case you will see browser homepage. 4) Navigate to the demos.devexpress.com by clicking on the open tabs button (I marked it with a red circle).

It is important to open minimized tab in the browser not a new one.

My phone is Samsung Galaxy S8 with old latest updates including last versions of mobile browsers.

Chrome:

Screenshot_20201001-151454_Chrome

Firefox:

Screenshot_20201001-151543_Firefox

SteveSandersonMS commented 4 years ago

That is the equivalent of what I did, but it didn't repro on iOS 14.

@dotnet/aspnet-blazor-eng I don't have the hardware to try reproducing this on an up-to-date Android device. Do any of you?

captainsafia commented 4 years ago

I have a Galaxy S9 running Android 10 that I can validate this on. Will report back.

captainsafia commented 4 years ago

OK! Tried this out on Chrome (v85.0.4183.127). Although there was a brief loading period after the browser opened again, eventually all the charts were displayed.

@rburnashev85 Would you be able to retrieve logs from the session where this bug surfaces?

rburnashev85 commented 4 years ago

@rburnashev85 Would you be able to retrieve logs from the session where this bug surfaces?

I will try. I've changed LogLevel to Trace for System and Microsoft on my Server Side Blazor site.

Also check whether Lite mode in Chrome is enabled. My Chrome version is also 85.0.4183.127. Android 9.

rburnashev85 commented 4 years ago

These are logs from my site when this bug happens

Logs 02 Oct 2020 12:08:13.910 Connection id "0HM36FUPUN6DH" stopped. 02 Oct 2020 12:08:13.909 Request finished in 86.5968ms 200 text/html; charset=utf-8 02 Oct 2020 12:08:13.909 Executed endpoint '/_Host' 02 Oct 2020 12:08:13.909 Executed page /_Host in 83.8256ms 02 Oct 2020 12:08:13.909 Resource Filter: After executing OnResourceExecuted on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 02 Oct 2020 12:08:13.908 Resource Filter: Before executing OnResourceExecuted on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 02 Oct 2020 12:08:13.908 Result Filter: After executing OnResultExecuted on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 02 Oct 2020 12:08:13.908 Result Filter: Before executing OnResultExecuted on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 02 Oct 2020 12:08:13.908 After executing action result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 02 Oct 2020 12:08:13.907 Connection id "0HM36FUPUN6DH" disconnecting. 02 Oct 2020 12:08:13.907 Connection id "0HM36FUPUN6DH" sending FIN because: "The client closed the connection." 02 Oct 2020 12:08:13.907 Connection id "0HM36FUPUN6DH" received FIN. 02 Oct 2020 12:08:13.902 Disposing component 0 of type Anya.Web.Pages.HeadSection 02 Oct 2020 12:08:13.901 Rendering component 0 of type Anya.Web.Pages.HeadSection 02 Oct 2020 12:08:13.901 Initializing root component 0 (Anya.Web.Pages.HeadSection) 02 Oct 2020 12:08:13.901 Performing protect operation to key {d46ee299-8159-4956-aea8-3d41e0eb09ba} with purposes ('/webapp', 'Microsoft.AspNetCore.Components.ComponentDescriptorSerializer,V1', 'Microsoft.AspNetCore.DataProtection.TimeLimitedDataProtector.v1'). 02 Oct 2020 12:08:13.900 Disposing component 61 of type Anya.Web.Pages.Loading 02 Oct 2020 12:08:13.900 Disposing component 60 of type Anya.Web.Pages.Loading 02 Oct 2020 12:08:13.899 Disposing component 59 of type Anya.Web.Pages.Loading 02 Oct 2020 12:08:13.899 Disposing component 58 of type Anya.Web.Pages.MapLink 02 Oct 2020 12:08:13.899 Disposing component 57 of type Anya.Web.Pages.Contacts 02 Oct 2020 12:08:13.899 Disposing component 56 of type Anya.Web.Pages.CustomerRecommendations 02 Oct 2020 12:08:13.899 Disposing component 55 of type Anya.WebApp.BG.Pages.Advantages 02 Oct 2020 12:08:13.898 Disposing component 54 of type Anya.Web.Pages.ItemsCarousel 02 Oct 2020 12:08:13.898 Disposing component 53 of type Anya.Web.Pages.ItemsEmbeded 02 Oct 2020 12:08:13.898 Disposing component 52 of type Anya.Web.Pages.Banners 02 Oct 2020 12:08:13.898 Disposing component 51 of type Anya.Web.Pages.ItemsEmbeded 02 Oct 2020 12:08:13.898 Disposing component 50 of type Anya.Web.Pages.Banners 02 Oct 2020 12:08:13.897 Disposing component 49 of type Anya.Web.Pages.ItemsEmbeded 02 Oct 2020 12:08:13.897 Disposing component 48 of type Anya.Web.Pages.Categories 02 Oct 2020 12:08:13.897 Disposing component 47 of type Anya.WebApp.BG.Pages.HowItWorks 02 Oct 2020 12:08:13.897 Disposing component 46 of type Anya.Web.Pages.Banners 02 Oct 2020 12:08:13.897 Disposing component 45 of type Anya.WebApp.BG.Pages.ContentTopMenu 02 Oct 2020 12:08:13.896 Disposing component 44 of type Anya.WebApp.BG.Pages.ContentCompanyHeader 02 Oct 2020 12:08:13.896 Disposing component 43 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.896 Disposing component 42 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.896 Disposing component 41 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.895 Disposing component 40 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.895 Disposing component 39 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.895 Disposing component 38 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.895 Disposing component 37 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.895 Disposing component 36 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.894 Disposing component 35 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.894 Disposing component 34 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.894 Disposing component 33 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.894 Disposing component 32 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.894 Disposing component 31 of type Anya.Web.Pages.BlazoredTypeahead`2[Anya.Domain.Entities.ItemSuggestion,Anya.Domain.Entities.ItemSuggestion] 02 Oct 2020 12:08:13.893 Disposing component 30 of type Microsoft.AspNetCore.Components.CascadingValue`1[Blazored.Modal.ModalOptions] 02 Oct 2020 12:08:13.893 Disposing component 29 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.893 Disposing component 28 of type Anya.Web.Pages.Contacts 02 Oct 2020 12:08:13.893 Disposing component 27 of type Anya.WebApp.BG.Pages.Index 02 Oct 2020 12:08:13.893 Disposing component 26 of type Anya.WebApp.BG.Pages.ContentTopPanel 02 Oct 2020 12:08:13.892 Disposing component 25 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.892 Disposing component 24 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.892 Disposing component 23 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.892 Disposing component 22 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.892 Disposing component 21 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.891 Disposing component 20 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.891 Disposing component 19 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.891 Disposing component 18 of type Anya.Web.Pages.NavMenuSearchFilters 02 Oct 2020 12:08:13.891 Disposing component 17 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.891 Disposing component 16 of type Anya.Web.Pages.Contacts 02 Oct 2020 12:08:13.891 Disposing component 15 of type Anya.Web.Pages.SearchPanel 02 Oct 2020 12:08:13.890 Disposing component 14 of type Microsoft.AspNetCore.Components.CascadingValue`1[Blazored.Modal.BlazoredModal] 02 Oct 2020 12:08:13.890 Disposing component 13 of type Anya.Web.Pages.BottomPanel 02 Oct 2020 12:08:13.890 Disposing component 12 of type Anya.WebApp.BG.Pages.Layouts.ContentLayout 02 Oct 2020 12:08:13.890 Disposing component 11 of type Anya.Web.Pages.NavMenu 02 Oct 2020 12:08:13.890 Disposing component 10 of type Anya.Web.Pages.TopPanel 02 Oct 2020 12:08:13.889 Disposing component 9 of type Blazored.Modal.BlazoredModal 02 Oct 2020 12:08:13.889 Disposing component 8 of type Anya.Web.Pages.Layouts.MainLayout 02 Oct 2020 12:08:13.889 Disposing component 7 of type Microsoft.AspNetCore.Components.LayoutView 02 Oct 2020 12:08:13.889 Disposing component 6 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView+AuthorizeRouteViewCore 02 Oct 2020 12:08:13.889 Disposing component 5 of type Microsoft.AspNetCore.Components.CascadingValue`1[System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Components.Authorization.AuthenticationState]] 02 Oct 2020 12:08:13.888 Disposing component 4 of type Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState 02 Oct 2020 12:08:13.888 Disposing component 3 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView 02 Oct 2020 12:08:13.888 Disposing component 2 of type Blazor.Analytics.GoogleAnalytics.Components.GoogleAnalytics 02 Oct 2020 12:08:13.888 Disposing component 1 of type Microsoft.AspNetCore.Components.Routing.Router 02 Oct 2020 12:08:13.888 Disposing component 0 of type Anya.WebApp.BG.App 02 Oct 2020 12:08:13.887 Rendering component 2 of type Blazor.Analytics.GoogleAnalytics.Components.GoogleAnalytics 02 Oct 2020 12:08:13.886 Rendering component 61 of type Anya.Web.Pages.Loading 02 Oct 2020 12:08:13.886 Rendering component 60 of type Anya.Web.Pages.Loading 02 Oct 2020 12:08:13.886 Rendering component 59 of type Anya.Web.Pages.Loading 02 Oct 2020 12:08:13.886 Rendering component 58 of type Anya.Web.Pages.MapLink 02 Oct 2020 12:08:13.886 Rendering component 57 of type Anya.Web.Pages.Contacts 02 Oct 2020 12:08:13.885 Rendering component 56 of type Anya.Web.Pages.CustomerRecommendations 02 Oct 2020 12:08:13.885 Rendering component 55 of type Anya.WebApp.BG.Pages.Advantages 02 Oct 2020 12:08:13.883 Rendering component 54 of type Anya.Web.Pages.ItemsCarousel 02 Oct 2020 12:08:13.883 Initializing component 61 (Anya.Web.Pages.Loading) as child of Anya.Web.Pages.ItemsEmbeded (Anya.Web.Pages.ItemsEmbeded) 02 Oct 2020 12:08:13.883 Rendering component 53 of type Anya.Web.Pages.ItemsEmbeded 02 Oct 2020 12:08:13.883 Rendering component 52 of type Anya.Web.Pages.Banners 02 Oct 2020 12:08:13.882 Initializing component 60 (Anya.Web.Pages.Loading) as child of Anya.Web.Pages.ItemsEmbeded (Anya.Web.Pages.ItemsEmbeded) 02 Oct 2020 12:08:13.882 Rendering component 51 of type Anya.Web.Pages.ItemsEmbeded 02 Oct 2020 12:08:13.882 Rendering component 50 of type Anya.Web.Pages.Banners 02 Oct 2020 12:08:13.882 Initializing component 59 (Anya.Web.Pages.Loading) as child of Anya.Web.Pages.ItemsEmbeded (Anya.Web.Pages.ItemsEmbeded) 02 Oct 2020 12:08:13.882 Rendering component 49 of type Anya.Web.Pages.ItemsEmbeded 02 Oct 2020 12:08:13.881 Rendering component 48 of type Anya.Web.Pages.Categories 02 Oct 2020 12:08:13.881 Rendering component 47 of type Anya.WebApp.BG.Pages.HowItWorks 02 Oct 2020 12:08:13.881 Rendering component 46 of type Anya.Web.Pages.Banners 02 Oct 2020 12:08:13.881 Initializing component 58 (Anya.Web.Pages.MapLink) as child of Anya.WebApp.BG.Pages.ContentTopMenu (Anya.WebApp.BG.Pages.ContentTopMenu) 02 Oct 2020 12:08:13.881 Rendering component 45 of type Anya.WebApp.BG.Pages.ContentTopMenu 02 Oct 2020 12:08:13.880 Initializing component 57 (Anya.Web.Pages.Contacts) as child of Anya.WebApp.BG.Pages.ContentCompanyHeader (Anya.WebApp.BG.Pages.ContentCompanyHeader) 02 Oct 2020 12:08:13.880 Rendering component 44 of type Anya.WebApp.BG.Pages.ContentCompanyHeader 02 Oct 2020 12:08:13.880 Rendering component 43 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.880 Rendering component 42 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.880 Rendering component 41 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.879 Rendering component 40 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.879 Rendering component 39 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.879 Rendering component 38 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.879 Rendering component 37 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.879 Rendering component 36 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.878 Rendering component 35 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.878 Rendering component 34 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.878 Rendering component 33 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.878 Rendering component 32 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.878 Rendering component 31 of type Anya.Web.Pages.BlazoredTypeahead`2[Anya.Domain.Entities.ItemSuggestion,Anya.Domain.Entities.ItemSuggestion] 02 Oct 2020 12:08:13.877 Rendering component 30 of type Microsoft.AspNetCore.Components.CascadingValue`1[Blazored.Modal.ModalOptions] 02 Oct 2020 12:08:13.877 Rendering component 29 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.877 Rendering component 28 of type Anya.Web.Pages.Contacts 02 Oct 2020 12:08:13.877 Initializing component 56 (Anya.Web.Pages.CustomerRecommendations) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.876 Initializing component 55 (Anya.WebApp.BG.Pages.Advantages) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.876 Initializing component 54 (Anya.Web.Pages.ItemsCarousel) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.876 Initializing component 53 (Anya.Web.Pages.ItemsEmbeded) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.876 Initializing component 52 (Anya.Web.Pages.Banners) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.875 Initializing component 51 (Anya.Web.Pages.ItemsEmbeded) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.875 Initializing component 50 (Anya.Web.Pages.Banners) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.875 Initializing component 49 (Anya.Web.Pages.ItemsEmbeded) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.875 Initializing component 48 (Anya.Web.Pages.Categories) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.874 Initializing component 47 (Anya.WebApp.BG.Pages.HowItWorks) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.874 Initializing component 46 (Anya.Web.Pages.Banners) as child of Anya.WebApp.BG.Pages.Index (Anya.WebApp.BG.Pages.Index) 02 Oct 2020 12:08:13.874 Rendering component 27 of type Anya.WebApp.BG.Pages.Index 02 Oct 2020 12:08:13.874 Initializing component 45 (Anya.WebApp.BG.Pages.ContentTopMenu) as child of Anya.WebApp.BG.Pages.ContentTopPanel (Anya.WebApp.BG.Pages.ContentTopPanel) 02 Oct 2020 12:08:13.873 Initializing component 44 (Anya.WebApp.BG.Pages.ContentCompanyHeader) as child of Anya.WebApp.BG.Pages.ContentTopPanel (Anya.WebApp.BG.Pages.ContentTopPanel) 02 Oct 2020 12:08:13.873 Rendering component 26 of type Anya.WebApp.BG.Pages.ContentTopPanel 02 Oct 2020 12:08:13.873 Rendering component 25 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.873 Rendering component 24 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.872 Rendering component 23 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.872 Rendering component 22 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.872 Rendering component 21 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.872 Rendering component 20 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.872 Rendering component 19 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeView 02 Oct 2020 12:08:13.871 Initializing component 43 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.871 Initializing component 42 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.871 Initializing component 41 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.870 Initializing component 40 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.870 Initializing component 39 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.870 Initializing component 38 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.870 Initializing component 37 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.869 Initializing component 36 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.869 Initializing component 35 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.869 Initializing component 34 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.868 Initializing component 33 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.868 Initializing component 32 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenuSearchFilters (Anya.Web.Pages.NavMenuSearchFilters) 02 Oct 2020 12:08:13.868 Rendering component 18 of type Anya.Web.Pages.NavMenuSearchFilters 02 Oct 2020 12:08:13.868 Rendering component 17 of type Microsoft.AspNetCore.Components.Routing.NavLink 02 Oct 2020 12:08:13.868 Rendering component 16 of type Anya.Web.Pages.Contacts 02 Oct 2020 12:08:13.868 Initializing component 31 (Anya.Web.Pages.BlazoredTypeahead`2[Anya.Domain.Entities.ItemSuggestion,Anya.Domain.Entities.ItemSuggestion]) as child of Anya.Web.Pages.SearchPanel (Anya.Web.Pages.SearchPanel) 02 Oct 2020 12:08:13.867 Rendering component 15 of type Anya.Web.Pages.SearchPanel 02 Oct 2020 12:08:13.867 Initializing component 30 (Microsoft.AspNetCore.Components.CascadingValue`1[Blazored.Modal.ModalOptions]) as child of Microsoft.AspNetCore.Components.CascadingValue`1[Blazored.Modal.BlazoredModal] (Microsoft.AspNetCore.Components.CascadingValue`1[Blazored.Modal.BlazoredModal]) 02 Oct 2020 12:08:13.867 Rendering component 14 of type Microsoft.AspNetCore.Components.CascadingValue`1[Blazored.Modal.BlazoredModal] 02 Oct 2020 12:08:13.861 Authorization failed. 02 Oct 2020 12:08:13.861 Initializing component 29 (Microsoft.AspNetCore.Components.Authorization.AuthorizeView) as child of Anya.Web.Pages.BottomPanel (Anya.Web.Pages.BottomPanel) 02 Oct 2020 12:08:13.860 Initializing component 28 (Anya.Web.Pages.Contacts) as child of Anya.Web.Pages.BottomPanel (Anya.Web.Pages.BottomPanel) 02 Oct 2020 12:08:13.860 Rendering component 13 of type Anya.Web.Pages.BottomPanel 02 Oct 2020 12:08:13.860 SelectDocuments. Customers. Complete. 02 Oct 2020 12:08:13.859 SelectDocuments. Categories. Complete. 02 Oct 2020 12:08:13.858 SelectDocuments. Company. Complete. 02 Oct 2020 12:08:13.856 Initializing component 27 (Anya.WebApp.BG.Pages.Index) as child of Anya.WebApp.BG.Pages.Layouts.ContentLayout (Anya.WebApp.BG.Pages.Layouts.ContentLayout) 02 Oct 2020 12:08:13.856 Initializing component 26 (Anya.WebApp.BG.Pages.ContentTopPanel) as child of Anya.WebApp.BG.Pages.Layouts.ContentLayout (Anya.WebApp.BG.Pages.Layouts.ContentLayout) 02 Oct 2020 12:08:13.856 Rendering component 12 of type Anya.WebApp.BG.Pages.Layouts.ContentLayout 02 Oct 2020 12:08:13.856 Authorization failed. 02 Oct 2020 12:08:13.856 Initializing component 25 (Microsoft.AspNetCore.Components.Authorization.AuthorizeView) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.855 Authorization failed. 02 Oct 2020 12:08:13.855 Initializing component 24 (Microsoft.AspNetCore.Components.Authorization.AuthorizeView) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.855 Authorization failed. 02 Oct 2020 12:08:13.855 Initializing component 23 (Microsoft.AspNetCore.Components.Authorization.AuthorizeView) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.854 Authorization failed. 02 Oct 2020 12:08:13.854 Initializing component 22 (Microsoft.AspNetCore.Components.Authorization.AuthorizeView) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.854 Authorization failed. 02 Oct 2020 12:08:13.854 Initializing component 21 (Microsoft.AspNetCore.Components.Authorization.AuthorizeView) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.854 Authorization failed. 02 Oct 2020 12:08:13.853 Initializing component 20 (Microsoft.AspNetCore.Components.Authorization.AuthorizeView) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.853 Authorization failed. 02 Oct 2020 12:08:13.853 Initializing component 19 (Microsoft.AspNetCore.Components.Authorization.AuthorizeView) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.853 Initializing component 18 (Anya.Web.Pages.NavMenuSearchFilters) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.852 Initializing component 17 (Microsoft.AspNetCore.Components.Routing.NavLink) as child of Anya.Web.Pages.NavMenu (Anya.Web.Pages.NavMenu) 02 Oct 2020 12:08:13.847 Rendering component 11 of type Anya.Web.Pages.NavMenu 02 Oct 2020 12:08:13.846 Initializing component 16 (Anya.Web.Pages.Contacts) as child of Anya.Web.Pages.TopPanel (Anya.Web.Pages.TopPanel) 02 Oct 2020 12:08:13.846 Initializing component 15 (Anya.Web.Pages.SearchPanel) as child of Anya.Web.Pages.TopPanel (Anya.Web.Pages.TopPanel) 02 Oct 2020 12:08:13.846 Rendering component 10 of type Anya.Web.Pages.TopPanel 02 Oct 2020 12:08:13.846 Initializing component 14 (Microsoft.AspNetCore.Components.CascadingValue`1[Blazored.Modal.BlazoredModal]) as child of Blazored.Modal.BlazoredModal (Blazored.Modal.BlazoredModal) 02 Oct 2020 12:08:13.845 Rendering component 9 of type Blazored.Modal.BlazoredModal 02 Oct 2020 12:08:13.845 Initializing component 13 (Anya.Web.Pages.BottomPanel) as child of Anya.Web.Pages.Layouts.MainLayout (Anya.Web.Pages.Layouts.MainLayout) 02 Oct 2020 12:08:13.845 SelectDocuments. Company. Complete. 02 Oct 2020 12:08:13.844 Initializing component 12 (Anya.WebApp.BG.Pages.Layouts.ContentLayout) as child of Anya.Web.Pages.Layouts.MainLayout (Anya.Web.Pages.Layouts.MainLayout) 02 Oct 2020 12:08:13.844 SelectDocuments. Categories. Complete. 02 Oct 2020 12:08:13.842 Initializing component 11 (Anya.Web.Pages.NavMenu) as child of Anya.Web.Pages.Layouts.MainLayout (Anya.Web.Pages.Layouts.MainLayout) 02 Oct 2020 12:08:13.842 Initializing component 10 (Anya.Web.Pages.TopPanel) as child of Anya.Web.Pages.Layouts.MainLayout (Anya.Web.Pages.Layouts.MainLayout) 02 Oct 2020 12:08:13.842 Initializing component 9 (Blazored.Modal.BlazoredModal) as child of Anya.Web.Pages.Layouts.MainLayout (Anya.Web.Pages.Layouts.MainLayout) 02 Oct 2020 12:08:13.841 Rendering component 8 of type Anya.Web.Pages.Layouts.MainLayout 02 Oct 2020 12:08:13.841 SelectDocuments. Company. Complete. 02 Oct 2020 12:08:13.837 Initializing component 8 (Anya.Web.Pages.Layouts.MainLayout) as child of Microsoft.AspNetCore.Components.LayoutView (Microsoft.AspNetCore.Components.LayoutView) 02 Oct 2020 12:08:13.837 Rendering component 7 of type Microsoft.AspNetCore.Components.LayoutView 02 Oct 2020 12:08:13.836 Initializing component 7 (Microsoft.AspNetCore.Components.LayoutView) as child of Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView+AuthorizeRouteViewCore (Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView+AuthorizeRouteViewCore) 02 Oct 2020 12:08:13.836 Rendering component 6 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView+AuthorizeRouteViewCore 02 Oct 2020 12:08:13.836 Initializing component 6 (Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView+AuthorizeRouteViewCore) as child of Microsoft.AspNetCore.Components.CascadingValue`1[System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Components.Authorization.AuthenticationState]] (Microsoft.AspNetCore.Components.CascadingValue`1[System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Components.Authorization.AuthenticationState]]) 02 Oct 2020 12:08:13.835 Rendering component 5 of type Microsoft.AspNetCore.Components.CascadingValue`1[System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Components.Authorization.AuthenticationState]] 02 Oct 2020 12:08:13.835 Initializing component 5 (Microsoft.AspNetCore.Components.CascadingValue`1[System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Components.Authorization.AuthenticationState]]) as child of Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState (Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState) 02 Oct 2020 12:08:13.835 Rendering component 4 of type Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState 02 Oct 2020 12:08:13.834 Initializing component 4 (Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState) as child of Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView (Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView) 02 Oct 2020 12:08:13.834 Rendering component 3 of type Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView 02 Oct 2020 12:08:13.834 Rendering component 2 of type Blazor.Analytics.GoogleAnalytics.Components.GoogleAnalytics 02 Oct 2020 12:08:13.834 Initializing component 3 (Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView) as child of Microsoft.AspNetCore.Components.Routing.Router (Microsoft.AspNetCore.Components.Routing.Router) 02 Oct 2020 12:08:13.833 Rendering component 1 of type Microsoft.AspNetCore.Components.Routing.Router 02 Oct 2020 12:08:13.833 Initializing component 2 (Blazor.Analytics.GoogleAnalytics.Components.GoogleAnalytics) as child of Anya.WebApp.BG.App (Anya.WebApp.BG.App) 02 Oct 2020 12:08:13.833 Navigating to component Anya.WebApp.BG.Pages.Index in response to path '' with base URI 'https://boardgames.kz/' 02 Oct 2020 12:08:13.832 Initializing component 1 (Microsoft.AspNetCore.Components.Routing.Router) as child of Anya.WebApp.BG.App (Anya.WebApp.BG.App) 02 Oct 2020 12:08:13.832 Rendering component 0 of type Anya.WebApp.BG.App 02 Oct 2020 12:08:13.832 Initializing root component 0 (Anya.WebApp.BG.App) 02 Oct 2020 12:08:13.831 Performing protect operation to key {d46ee299-8159-4956-aea8-3d41e0eb09ba} with purposes ('/webapp', 'Microsoft.AspNetCore.Components.ComponentDescriptorSerializer,V1', 'Microsoft.AspNetCore.DataProtection.TimeLimitedDataProtector.v1'). 02 Oct 2020 12:08:13.830 Before executing action result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 02 Oct 2020 12:08:13.830 Result Filter: After executing OnResultExecuting on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 02 Oct 2020 12:08:13.830 Result Filter: Before executing OnResultExecuting on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 02 Oct 2020 12:08:13.829 Page Filter: After executing OnPageHandlerExecuted on filter Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandleOptionsRequestsPageFilter. 02 Oct 2020 12:08:13.829 Page Filter: Before executing OnPageHandlerExecuted on filter Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandleOptionsRequestsPageFilter. 02 Oct 2020 12:08:13.829 Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 02 Oct 2020 12:08:13.829 Executing an implicit handler method - ModelState is Valid 02 Oct 2020 12:08:13.829 Page Filter: After executing OnPageHandlerExecuting on filter Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandleOptionsRequestsPageFilter. 02 Oct 2020 12:08:13.828 Page Filter: Before executing OnPageHandlerExecuting on filter Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandleOptionsRequestsPageFilter. 02 Oct 2020 12:08:13.828 Page Filter: Before executing OnPageHandlerSelected on filter Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandleOptionsRequestsPageFilter. 02 Oct 2020 12:08:13.828 Executed page factory for page Anya.WebApp.BG.Pages.Pages__Host (Anya.WebApp.BG.Views) 02 Oct 2020 12:08:13.828 Executing page factory for page Anya.WebApp.BG.Pages.Pages__Host (Anya.WebApp.BG.Views) 02 Oct 2020 12:08:13.827 Resource Filter: After executing OnResourceExecuting on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 02 Oct 2020 12:08:13.827 Resource Filter: Before executing OnResourceExecuting on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 02 Oct 2020 12:08:13.827 Authorization Filter: After executing OnAuthorizationAsync on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.AutoValidateAntiforgeryTokenAuthorizationFilter. 02 Oct 2020 12:08:13.827 Authorization Filter: Before executing OnAuthorizationAsync on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.AutoValidateAntiforgeryTokenAuthorizationFilter. 02 Oct 2020 12:08:13.825 Execution plan of result filters (in the following order): ["Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter"] 02 Oct 2020 12:08:13.825 Execution plan of exception filters (in the following order): ["None"] 02 Oct 2020 12:08:13.825 Execution plan of action filters (in the following order): ["Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000)"] 02 Oct 2020 12:08:13.825 Execution plan of resource filters (in the following order): ["Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter"] 02 Oct 2020 12:08:13.825 Execution plan of authorization filters (in the following order): ["Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.AutoValidateAntiforgeryTokenAuthorizationF… 02 Oct 2020 12:08:13.825 Route matched with {page = "/_Host", action = "", controller = "", area = ""}. Executing page /_Host 02 Oct 2020 12:08:13.824 Executing endpoint '/_Host' 02 Oct 2020 12:08:13.824 AuthenticationScheme: AzureADCookie was not authenticated. 02 Oct 2020 12:08:13.824 Request matched endpoint '/_Host' 02 Oct 2020 12:08:13.824 Endpoint 'Fallback {*path:nonfile}' with route pattern '{*path:nonfile}' is valid for the request path '/' 02 Oct 2020 12:08:13.824 Endpoint 'Page: /_Host' with route pattern '' is valid for the request path '/' 02 Oct 2020 12:08:13.824 2 candidate(s) found for the request path '/' 02 Oct 2020 12:08:13.824 The request path / does not match a supported file type 02 Oct 2020 12:08:13.823 The request path does not match the path filter 02 Oct 2020 12:08:13.823 Unknown proxy: [::ffff:172.29.0.7]:50372 02 Oct 2020 12:08:13.823 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:08:13.823 All hosts are allowed. 02 Oct 2020 12:08:13.823 Request starting HTTP/1.1 HEAD http://boardgames.kz/ 0 02 Oct 2020 12:08:13.822 Connection id "0HM36FUPUN6DH" started. 02 Oct 2020 12:08:13.822 Connection id "0HM36FUPUN6DH" accepted. 02 Oct 2020 12:07:37.757 Connection id "0HM36FUPUN6DG" stopped. 02 Oct 2020 12:07:37.757 Request finished in 10.8775ms 200 image/jpeg 02 Oct 2020 12:07:37.756 Connection id "0HM36FUPUN6DG" completed keep alive response. 02 Oct 2020 12:07:37.756 Connection id "0HM36FUPUN6DG" disconnecting. 02 Oct 2020 12:07:37.755 Sending file. Request path: '/content/company/banner-preimushchestva-prokata-igr.jpg'. Physical path: '/webapp/wwwroot/content/company/banner-preimushchestva-prokata-igr.jpg' 02 Oct 2020 12:07:37.754 Connection id "0HM36FUPUN6DG" sending FIN because: "The client closed the connection." 02 Oct 2020 12:07:37.754 Connection id "0HM36FUPUN6DG" received FIN. 02 Oct 2020 12:07:37.747 Range header's value is empty. 02 Oct 2020 12:07:37.747 The request path does not match the path filter 02 Oct 2020 12:07:37.746 Unknown proxy: [::ffff:172.29.0.7]:50362 02 Oct 2020 12:07:37.746 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:07:37.746 All hosts are allowed. 02 Oct 2020 12:07:37.746 Request starting HTTP/1.1 GET http://boardgames.kz/content/company/banner-preimushchestva-prokata-igr.jpg 02 Oct 2020 12:07:37.745 Connection id "0HM36FUPUN6DG" started. 02 Oct 2020 12:07:37.745 Connection id "0HM36FUPUN6DG" accepted. 02 Oct 2020 12:07:37.238 Connection id "0HM36FUPUN6DA" received FIN. 02 Oct 2020 12:07:37.232 Connection id "0HM36FUPUN6DA" sending FIN because: "The Socket transport's send loop completed gracefully." 02 Oct 2020 12:07:37.232 Connection id "0HM36FUPUN6DA" stopped. 02 Oct 2020 12:07:37.232 Connection id "0HM36FUPUN6DA" disconnecting. 02 Oct 2020 12:07:37.232 Request finished in 486.9572ms 101 02 Oct 2020 12:07:37.232 Executed endpoint '/_blazor' 02 Oct 2020 12:07:37.232 Removing connection m6VVpcbMIIc8aWb_FUVJzw from the list of connections. 02 Oct 2020 12:07:37.232 WebSockets transport complete. 02 Oct 2020 12:07:37.232 Socket closed. 02 Oct 2020 12:07:37.157 Connection id "0HM36FUPUN6DE" sending FIN because: "The Socket transport's send loop completed gracefully." 02 Oct 2020 12:07:37.156 Connection id "0HM36FUPUN6DE" stopped. 02 Oct 2020 12:07:37.156 Connection id "0HM36FUPUN6DE" disconnecting. 02 Oct 2020 12:07:37.156 Connection id "0HM36FUPUN6DE" received FIN. 02 Oct 2020 12:07:37.153 Request finished in 33.7827ms 200 image/jpeg 02 Oct 2020 12:07:37.152 Connection id "0HM36FUPUN6DE" completed keep alive response. 02 Oct 2020 12:07:37.152 Sending file. Request path: '/content/company/banner-dlya-igry-s-detmi.jpg'. Physical path: '/webapp/wwwroot/content/company/banner-dlya-igry-s-detmi.jpg' 02 Oct 2020 12:07:37.145 Connection id "0HM36FUPUN6DC" sending FIN because: "The Socket transport's send loop completed gracefully." 02 Oct 2020 12:07:37.145 Connection id "0HM36FUPUN6DC" stopped. 02 Oct 2020 12:07:37.145 Connection id "0HM36FUPUN6DC" disconnecting. 02 Oct 2020 12:07:37.144 Connection id "0HM36FUPUN6DC" received FIN. 02 Oct 2020 12:07:37.142 Request finished in 34.1496ms 200 image/jpeg 02 Oct 2020 12:07:37.142 Connection id "0HM36FUPUN6DC" completed keep alive response. 02 Oct 2020 12:07:37.141 Sending file. Request path: '/content/company/banner-seriya-manchkin.jpg'. Physical path: '/webapp/wwwroot/content/company/banner-seriya-manchkin.jpg' 02 Oct 2020 12:07:37.138 Connection id "0HM36FUPUN6DD" sending FIN because: "The Socket transport's send loop completed gracefully." 02 Oct 2020 12:07:37.137 Connection id "0HM36FUPUN6DD" stopped. 02 Oct 2020 12:07:37.137 Connection id "0HM36FUPUN6DD" disconnecting. 02 Oct 2020 12:07:37.137 Connection id "0HM36FUPUN6DD" received FIN. 02 Oct 2020 12:07:37.135 Request finished in 22.1431ms 200 image/jpeg 02 Oct 2020 12:07:37.135 Connection id "0HM36FUPUN6DD" completed keep alive response. 02 Oct 2020 12:07:37.134 Sending file. Request path: '/content/company/banner-seriya-igr-pokoreniya-marsa_2.jpg'. Physical path: '/webapp/wwwroot/content/company/banner-seriya-igr-pokoreniya-marsa_2.jpg' 02 Oct 2020 12:07:37.133 Connection id "0HM36FUPUN6DF" stopped. 02 Oct 2020 12:07:37.132 Connection id "0HM36FUPUN6DF" disconnecting. 02 Oct 2020 12:07:37.132 Connection id "0HM36FUPUN6DF" sending FIN because: "The client closed the connection." 02 Oct 2020 12:07:37.131 Request finished in 15.7516ms 200 image/jpeg 02 Oct 2020 12:07:37.131 Connection id "0HM36FUPUN6DF" completed keep alive response. 02 Oct 2020 12:07:37.131 Sending file. Request path: '/content/company/banner-igry-dlya-nachinayushchih_2.jpg'. Physical path: '/webapp/wwwroot/content/company/banner-igry-dlya-nachinayushchih_2.jpg' 02 Oct 2020 12:07:37.131 Connection id "0HM36FUPUN6DF" received FIN. 02 Oct 2020 12:07:37.128 Connection id "0HM36FUPUN6DB" sending FIN because: "The Socket transport's send loop completed gracefully." 02 Oct 2020 12:07:37.128 Connection id "0HM36FUPUN6DB" stopped. 02 Oct 2020 12:07:37.128 Connection id "0HM36FUPUN6DB" disconnecting. 02 Oct 2020 12:07:37.128 Connection id "0HM36FUPUN6DB" received FIN. 02 Oct 2020 12:07:37.125 Request finished in 20.2911ms 200 image/jpeg 02 Oct 2020 12:07:37.125 Connection id "0HM36FUPUN6DB" completed keep alive response. 02 Oct 2020 12:07:37.124 Sending file. Request path: '/content/company/banner-dlya-vecherinok_3.jpg'. Physical path: '/webapp/wwwroot/content/company/banner-dlya-vecherinok_3.jpg' 02 Oct 2020 12:07:37.119 Range header's value is empty. 02 Oct 2020 12:07:37.119 The request path does not match the path filter 02 Oct 2020 12:07:37.119 Unknown proxy: [::ffff:172.29.0.7]:50358 02 Oct 2020 12:07:37.119 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:07:37.119 All hosts are allowed. 02 Oct 2020 12:07:37.118 Request starting HTTP/1.1 GET http://boardgames.kz/content/company/banner-dlya-igry-s-detmi.jpg 02 Oct 2020 12:07:37.118 Connection id "0HM36FUPUN6DE" started. 02 Oct 2020 12:07:37.118 Range header's value is empty. 02 Oct 2020 12:07:37.117 The request path does not match the path filter 02 Oct 2020 12:07:37.117 Unknown proxy: [::ffff:172.29.0.7]:50360 02 Oct 2020 12:07:37.116 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:07:37.116 All hosts are allowed. 02 Oct 2020 12:07:37.116 Request starting HTTP/1.1 GET http://boardgames.kz/content/company/banner-igry-dlya-nachinayushchih_2.jpg 02 Oct 2020 12:07:37.116 Connection id "0HM36FUPUN6DF" started. 02 Oct 2020 12:07:37.115 Connection id "0HM36FUPUN6DF" accepted. 02 Oct 2020 12:07:37.115 Connection id "0HM36FUPUN6DE" accepted. 02 Oct 2020 12:07:37.114 Range header's value is empty. 02 Oct 2020 12:07:37.114 The request path does not match the path filter 02 Oct 2020 12:07:37.113 Unknown proxy: [::ffff:172.29.0.7]:50356 02 Oct 2020 12:07:37.113 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:07:37.113 All hosts are allowed. 02 Oct 2020 12:07:37.113 Request starting HTTP/1.1 GET http://boardgames.kz/content/company/banner-seriya-igr-pokoreniya-marsa_2.jpg 02 Oct 2020 12:07:37.113 Connection id "0HM36FUPUN6DD" started. 02 Oct 2020 12:07:37.113 Connection id "0HM36FUPUN6DD" accepted. 02 Oct 2020 12:07:37.110 Range header's value is empty. 02 Oct 2020 12:07:37.110 Range header's value is empty. 02 Oct 2020 12:07:37.108 The request path does not match the path filter 02 Oct 2020 12:07:37.108 Unknown proxy: [::ffff:172.29.0.7]:50354 02 Oct 2020 12:07:37.108 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:07:37.107 All hosts are allowed. 02 Oct 2020 12:07:37.107 Request starting HTTP/1.1 GET http://boardgames.kz/content/company/banner-seriya-manchkin.jpg 02 Oct 2020 12:07:37.107 Connection id "0HM36FUPUN6DC" started. 02 Oct 2020 12:07:37.107 Connection id "0HM36FUPUN6DC" accepted. 02 Oct 2020 12:07:37.107 The request path does not match the path filter 02 Oct 2020 12:07:37.105 Unknown proxy: [::ffff:172.29.0.7]:50352 02 Oct 2020 12:07:37.105 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:07:37.105 All hosts are allowed. 02 Oct 2020 12:07:37.105 Request starting HTTP/1.1 GET http://boardgames.kz/content/company/banner-dlya-vecherinok_3.jpg 02 Oct 2020 12:07:37.104 Connection id "0HM36FUPUN6DB" started. 02 Oct 2020 12:07:37.104 Connection id "0HM36FUPUN6DB" accepted. 02 Oct 2020 12:07:36.926 Waiting for the client to close the socket. 02 Oct 2020 12:07:36.925 Sending payload: 61 bytes. 02 Oct 2020 12:07:36.919 Waiting for WebSockets transport to complete. 02 Oct 2020 12:07:36.919 Disposing connection oQBapc9nC0ChJqB6217rjQ. 02 Oct 2020 12:07:36.919 OnConnectedAsync ending. 02 Oct 2020 12:07:36.918 InvocationId 0: Sending result of type 'System.String'. 02 Oct 2020 12:07:36.917 Call to 'StartCircuit' received invalid input data 02 Oct 2020 12:07:36.917 Failed to unprotect the component descriptor. 02 Oct 2020 12:07:36.915 Performing unprotect operation to key {d46ee299-8159-4956-aea8-3d41e0eb09ba} with purposes ('/webapp', 'Microsoft.AspNetCore.Components.ComponentDescriptorSerializer,V1', 'Microsoft.AspNetCore.DataProtection.TimeLimitedDataProtector.v1'). 02 Oct 2020 12:07:36.914 Received hub invocation: InvocationMessage { InvocationId: "0", Target: "StartCircuit", Arguments: [ https://boardgames.kz/, https://boardgames.kz/, [{"type":"server","sequence":0,"descriptor":"CfDJ8JnibtRZgVZJrqg9QeDrCbonJ4QKHDKERQErVa5dVC3nenq+w18EejqcBGZBs/gXSYhmVUQ8hd6mZGJEpa8Ft7K3RqmD4U4eJ/+XF3z/R2m/WGcl1hH+pRckHgrGxC96QigMgVgATZ2rDEEnGQMwOe5ojENV/UkBGL7tpyTOI6FWnGyJM0vT/MH+1boyZRjOGZTbbFnWuMsQha04+YNLuLXGLvODKvW2HKcf0L+sBNTZBc6FZ8n3bmX5C1yShSHefp0bE7AxXh7YZ1CNWK5GKFNcWwInxvQIwtxFlA5JaZFFIVX8r4vdEDHVZ8SJq3Dje7ljVN+2sHsVrPBeG6vlBMybf70+QoCLBauy5ERu2cp0"},{"type":"server","sequence":1,"descriptor":"CfDJ8JnibtRZgVZJrqg9QeDrCboz3cYE0hHD8LbSJFCTWIZjNy9Qbdlktd69AnqsNDWg9fo5sEpv88h/Cn/hBZwuCWQnCtzvLayyGvodF2maNAcvIdvIn965s9aueTxnmc9wcrOQzyB1n8QuBVJqVBm1oOMFom3ANduqmOPREk8v20XCLaITZSk5K3PfYJrs83L1jcVCXhEFebksp8rT0SwWMRCxR7idl7rr8gZQp2RZxLyWK1OXUskiozkLEdlflvapKxHHPUcXgCOBah9p6d9flftykckbExhwbMVP9CfDMUZEBj66M9hiG+HZhewhOyuH9hJqR0/JpyrzoQpm3Pp9RqYsIAdpcFlCDqzf1obGiBDy"}] ], StreamIds: [ ] }. 02 Oct 2020 12:07:36.913 Message received. Type: Binary, size: 902, EndOfMessage: true. 02 Oct 2020 12:07:36.824 Sending payload: 3 bytes. 02 Oct 2020 12:07:36.824 Completed connection handshake. Using HubProtocol 'blazorpack'. 02 Oct 2020 12:07:36.824 Found protocol implementation for requested protocol: blazorpack. 02 Oct 2020 12:07:36.824 Message received. Type: Text, size: 38, EndOfMessage: true. 02 Oct 2020 12:07:36.753 Socket opened using Sub-Protocol: 'null'. 02 Oct 2020 12:07:36.752 OnConnectedAsync started. 02 Oct 2020 12:07:36.747 Establishing new connection. 02 Oct 2020 12:07:36.746 Executing endpoint '/_blazor' 02 Oct 2020 12:07:36.746 AuthenticationScheme: AzureADCookie was not authenticated. 02 Oct 2020 12:07:36.746 Request matched endpoint '/_blazor' 02 Oct 2020 12:07:36.746 Endpoint 'Fallback {*path:nonfile}' with route pattern '{*path:nonfile}' is valid for the request path '/_blazor' 02 Oct 2020 12:07:36.746 Endpoint '/_blazor' with route pattern '/_blazor' is valid for the request path '/_blazor' 02 Oct 2020 12:07:36.746 2 candidate(s) found for the request path '/_blazor' 02 Oct 2020 12:07:36.746 The request path /_blazor does not match a supported file type 02 Oct 2020 12:07:36.746 The request path does not match the path filter 02 Oct 2020 12:07:36.745 Unknown proxy: [::ffff:172.29.0.7]:50350 02 Oct 2020 12:07:36.745 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:07:36.745 All hosts are allowed. 02 Oct 2020 12:07:36.745 Request starting HTTP/1.1 GET http://boardgames.kz/_blazor?id=m6VVpcbMIIc8aWb_FUVJzw 02 Oct 2020 12:07:36.745 Connection id "0HM36FUPUN6DA" started. 02 Oct 2020 12:07:36.745 Connection id "0HM36FUPUN6DA" accepted. 02 Oct 2020 12:07:36.279 Connection id "0HM36FUPUN6D9" sending FIN because: "The Socket transport's send loop completed gracefully." 02 Oct 2020 12:07:36.279 Connection id "0HM36FUPUN6D9" stopped. 02 Oct 2020 12:07:36.278 Connection id "0HM36FUPUN6D9" disconnecting. 02 Oct 2020 12:07:36.278 Connection id "0HM36FUPUN6D9" received FIN. 02 Oct 2020 12:07:36.275 Request finished in 7.4373ms 200 application/json 02 Oct 2020 12:07:36.275 Connection id "0HM36FUPUN6D9" completed keep alive response. 02 Oct 2020 12:07:36.275 Executed endpoint '/_blazor/negotiate' 02 Oct 2020 12:07:36.274 Sending negotiation response. 02 Oct 2020 12:07:36.273 New connection oQBapc9nC0ChJqB6217rjQ created. 02 Oct 2020 12:07:36.272 Executing endpoint '/_blazor/negotiate' 02 Oct 2020 12:07:36.272 AuthenticationScheme: AzureADCookie was not authenticated. 02 Oct 2020 12:07:36.272 Request matched endpoint '/_blazor/negotiate' 02 Oct 2020 12:07:36.271 Endpoint 'Fallback {*path:nonfile}' with route pattern '{*path:nonfile}' is valid for the request path '/_blazor/negotiate' 02 Oct 2020 12:07:36.271 Endpoint '/_blazor/negotiate' with route pattern '/_blazor/negotiate' is valid for the request path '/_blazor/negotiate' 02 Oct 2020 12:07:36.271 2 candidate(s) found for the request path '/_blazor/negotiate' 02 Oct 2020 12:07:36.270 POST requests are not supported 02 Oct 2020 12:07:36.270 POST requests are not supported 02 Oct 2020 12:07:36.268 Unknown proxy: [::ffff:172.29.0.7]:50348 02 Oct 2020 12:07:36.268 The request is insecure. Skipping HSTS header. 02 Oct 2020 12:07:36.268 All hosts are allowed. 02 Oct 2020 12:07:36.268 Request starting HTTP/1.1 POST http://boardgames.kz/_blazor/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 02 Oct 2020 12:07:36.266 Connection id "0HM36FUPUN6D9" started. 02 Oct 2020 12:07:36.266 Connection id "0HM36FUPUN6D9" accepted.
ghost commented 4 years ago

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.

mkArtakMSFT commented 2 years ago

Hi. Thanks for contacting us. We're closing this issue as there was not much community interest in this ask for quite a while now. You can learn more about our triage process and how we handle issues by reading our Triage Process writeup.