You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 8, 2020. It is now read-only.
I faced issue with newly created Socket hosting model. It not respond for any requests. I not really sure what exact goes wrong. It could be enviroment issue or so.
My machine is win10 x64 with latest updates.
Steps to reproduce
Open ReactGrid sample
Specify Socket hosting model by adding services.AddNodeServices(new NodeServicesOptions { HostingModel = NodeHostingModel.Socket }); to your ConfigureServices method.
Run dotnet run command
Try to open localhost:5000
Expected behaivior
Page rendered
Actual behaivior
Page stuck in infinite load
_Note_:
If run under old fashion Http hosting model everything work perfect.
_UPD_:
after long long wait for response i recieve following error:
System.IO.IOException: Pipe is broken.
at System.IO.Pipes.PipeStream.CheckWriteOperations()
at System.IO.Pipes.PipeStream.WriteAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken)
at Microsoft.AspNetCore.NodeServices.HostingModels.VirtualConnections.VirtualConnectionClient.<WriteAsync>d__19.MoveNext() in C:\dev\Source\Repos\NodeServices\src\Microsoft.AspNetCore.NodeServices\HostingModels\VirtualConnections\VirtualConnectionClient.cs:line 188
The text was updated successfully, but these errors were encountered:
In my final commit I'd missed out the PipeOptions.Asynchronous option that's needed on Windows for the named sockets transport not to just hang. Fixed now.
Yes, the original issue reported by @laskoviymishka - that it never works - is fixed and was released as beta-000004.
If you have a scenario where it fails intermittently, that must be something different.
Based on your description, I'm pretty sure your intermittent issue is the same as #128, hence not reopening this issue. Let's keep any discussion about the intermittent thing in #128.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I faced issue with newly created Socket hosting model. It not respond for any requests. I not really sure what exact goes wrong. It could be enviroment issue or so.
My machine is win10 x64 with latest updates.
Steps to reproduce
services.AddNodeServices(new NodeServicesOptions { HostingModel = NodeHostingModel.Socket });
to yourConfigureServices
method.dotnet run
commandExpected behaivior
Page rendered
Actual behaivior
Page stuck in infinite load
_Note_:
If run under old fashion
Http
hosting model everything work perfect._UPD_:
after long long wait for response i recieve following error:
The text was updated successfully, but these errors were encountered: