GoldenCave

Results 14 comments of GoldenCave

@ume05rw Do you think it would be possible to change this for the next version of SharpsCifs.Std?

@gcamp806 Thank you! My team is trying to figure out our next steps and whether we fork this ourselves or if we want to find another solution.

@reb3lzrr My org just ran into this too. It doesn't happen frequently, but it appears we sometimes get disconnected from the remote endpoint of the Socket. Microsoft docs say "The...

I am not sure how your team gets around this, but currently when this happens we have to restart our application in order to reconnect to the same smb directory....

Our stack is a follows: > System.Net.Sockets.SocketException (107): Transport endpoint is not connected > at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName) > at System.Net.Sockets.Socket.get_RemoteEndPoint() > at SharpCifs.Smb.SmbTransport.Connect() > at SharpCifs.Smb.SmbTree.TreeConnect(ServerMessageBlock andx, ServerMessageBlock...

Side note: It turns out for our case using SmbTransport.ClearCachedConnections(true); lead to an InvalidOperationException, possibly since it has a foreach over the collection, and then calls to remove it from...

For the above mentioned InvalidOperationException, I have created this github issue to track it outside of this one: #40

The docs state you can do beckerrobin's suggestion above, or modify the .csproj file to have these lines (from https://docs.microsoft.com/en-us/aspnet/core/test/integration-tests?view=aspnetcore-6.0#basic-tests-with-the-default-webapplicationfactory): ``` ``` However, if you do not use `public partial...

@beckerrobin In the sample code for BasicTests, you can update `WebApplicationFactory` to be `WebApplicationFactory` in order for that to work, since in .NET6, Startup has been combined within Program.

@souljorje Nice, I can confirm I started seeing this issue when I had keeps set to a smaller number, like 10. Then scrolling up made the last items disappear. @ZelCloud...