Chuck LU
Chuck LU
类似于这边两个 https://github.com/aspnet-contrib/AspNet.Security.OAuth.Providers/tree/dev/src/AspNet.Security.OAuth.QQ https://github.com/aspnet-contrib/AspNet.Security.OAuth.Providers/tree/dev/src/AspNet.Security.OAuth.Weixin
encounter the same problem on 7.0.1, already installed WindowsCompatibility > Import-WinModule Microsoft.PowerShell.Management > New-PSSession: C:\Users\clu\Documents\PowerShell\Modules\WindowsCompatibility\1.0.0\WindowsCompatibility.psm1:232 > Line | > 232 | $session = New-PSSession @newPSSessionParameters | Select-Obj … > |...
@rjmholt https://docs.microsoft.com/en-us/windows/win32/winrm/installation-and-configuration-for-windows-remote-management Run command `Winrm quickconfig` to enable Windows Remote Management first, then import module will work.
Please troubleshooting with WinDbg, maybe you can refer to https://www.cnblogs.com/sheng-jie/p/9503650.html
Please troubleshooting with WinDbg, maybe you can refer to https://www.cnblogs.com/sheng-jie/p/9503650.html
No, when get command by key failed, it will just return. https://github.com/kerryjiang/SuperSocket/blob/master/src/SuperSocket.Command/CommandMiddleware.cs#L199 ```c# protected virtual async ValueTask HandlePackage(IAppSession session, TPackageInfo package) { if (!_commands.TryGetValue(package.Key, out ICommandSet commandSet)) { return; }...
And in v1.6 https://github.com/kerryjiang/SuperSocket/blob/v1.6/SocketBase/AppServerBase.cs#L1287 ```c# var commandProxy = GetCommandByName(requestInfo.Key); if (commandProxy != null) {} else { session.InternalHandleUnknownRequest(requestInfo); } ```
Then you have to write your own code, as SuperSocket does not support the feature you required.
There are lots of standard filter https://github.com/kerryjiang/SuperSocket/tree/master/src/SuperSocket.ProtoBase
According https://en.wikipedia.org/wiki/Datagram#Structure, maybe you are looking for https://github.com/kerryjiang/SuperSocket/blob/master/src/SuperSocket.ProtoBase/FixedHeaderPipelineFilter.cs > Each datagram has two components, a header and a data payload. The header contains all the information sufficient for routing from...