wqmeng
wqmeng
这时,仍然会尝试使用 https 创建httpclient,导致抛出‘没有可用的libcripto库’ 异常。 procedure TCrossWebSocketMgr.CreateHttpClis; begin inherited; // 这里直接通过父类调用 CreateHttpCli(https); 这里的 https 并没有与 AUrl里面的具体的协议进行验证。 CreateHttpCli(WS); CreateHttpCli(WSS); end; 实际调用的时候,是否应该根据创建websocketclient的时候,提供的 AUrl ws来只创建 http 的?
:7a583387 ; d:\Program Files (x86)\madCollection\madExcept\Dlls\madExcept32.dll :6ccc000f System._FreeMem(???) System._DynArrayClear(???,???) :00fc7346 @FreeMem + $A Net.CrossWebSocketClient.TCrossWebSocketClientConnection._WebSocketRecv($19E92633,0) Net.CrossWebSocketClient.TCrossWebSocketClientConnection.ParseRecvData($19E92633,0) Net.CrossHttpClient.TCrossHttpClientSocket.LogicReceived(TCrossWebSocketClientConnection($21A1B3B8) as ICrossConnection,$19E92598,155) Net.CrossSocket.Base.TCrossSocketBase.TriggerReceived(TCrossWebSocketClientConnection($21A1B3B8) as ICrossConnection,$19E92598,155) Net.CrossSslSocket.OpenSSL.TCrossOpenSslSocket._Received(TCrossWebSocketClientConnection($21A1B3B8) as ICrossConnection,$19E92598,155) Net.CrossSslSocket.OpenSSL.TCrossOpenSslSocket.TriggerReceived(TCrossWebSocketClientConnection($21A1B3B8) as ICrossConnection,$19E92598,155) Net.CrossSocket.Iocp.TIocpCrossSocket._HandleRead($CE78508) Net.CrossSocket.Iocp.TIocpCrossSocket.ProcessIoEvent Net.CrossSocket.Base.TIoEventThread.Execute :01082645...
``` procedure _Log(const S: string); overload; begin if Assigned(_CrossLogger) then _CrossLogger(S) else begin {if IsConsole then Writeln(S); // 報錯位置。 AppendLog(S);} // 報錯位置。 end; end; ``` 今天用單元測試,測試一個socket通信,使用的是控制臺應用。_Log 這裏開始報錯。 另外請教一個問題, FSocket關閉的時候, 要先停掉什麽?我看示例Demo程序裏面,是...
Could move the FWords: TWordsCollection; to be a protected member of TSkLabel? Recently I would like to add the onMouseOver, onMouseLeave, onMouseEnter event to the TCustomWordsItem object, and I extend...
Try to use FskFont.MeasureText(AText, LRectF, nil); Get incorrect textwidth when a string including unicode emoji. Hello, I try to use FskFont.MeasureText function to get a textwidth, but when the string...
Move FWords: TWordsCollection; to be a protected member for sub-class override. Hope this could be committed to the new major release. Thank you.
当应用退出的时候,释放客户端的websocket,依然会触发OnResponse事件,导致非法访问的异常,此时websocket client对象已经被释放掉了。 First chance exception at $0127D4EC. Exception class $C0000005 with message 'access violation at 0x0127d4ec: read of address 0x00000000'. Process (72684) 报错代码位于 _Lock; 此时 TCrossWebSocket Self 指针已经是不可访问的对象了。并且此时的 FStatus 也已经是非法数据...
Hi, Tags may also used for some value in runtime, add save tags values. Thank you so much.
Hello, I've recently been working on [SVGIconImageList](https://github.com/EtheaDev/SVGIconImageList) and added some features, such as FlipHorizontal, FlipVertical, and ApplyDrawFullPathsInCenter. These features may be useful to some users. I hope this feature can...
Let' say I have a function which has 2 parameters. Ex: ``` // find the max value from the last period values from the range from Length - 1 -...