[22.04.01]
C:\Users\keb0238\Desktop\0401_TEST\avi-review-app\AVIDefectImageReview\AVIDefectImageReview\bin\Debug
TreeGuiUpdate time :
treeViewWaferSelection AfterSelect
WaferGridData Error API Error
이게 어디서 나나면
wafer grid data에서 나는데
쿼리하기전에 문제가 생김
어디가 문제인지 로그 찍어서보기
local이랑 헷갈리니까
포트번호 9925로 바꿔서 보기
[mysql] 2022/04/01 09:50:59 packets.go:37: read tcp 172.20.1.250:49214->192.168.100.225:3306: wsarecv: An existing connection was forcibly closed by the remote host.
2022/04/01 09:50:59 [Error]invalid connection; invalid connection
https://thenewth.com/2019/09/11/netan-existing-connection-was-forcibly-closed-by-the-remote-host-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95/
https://www.inflectra.com/support/knowledgebase/kb510.aspx
https://stackoverflow.com/questions/28286086/default-securityprotocol-in-net-4-5
<runtime>
<AppContextSwitchOverrides value="Switch.System.Net.DontEnableSystemDefaultTlsVersions=false"/>
</runtime>
3.0319
[Net.ServicePointManager]::SecurityProtocol = ([Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12 -bor [Net.SecurityProtocolType]::Tls13)
[Net.ServicePointManager]::SecurityProtocol = ([Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12 -bor [Net.SecurityProtocolType]::Tls13 -bor [Net.SecurityProtocolType]::Ssl3)
https://stackoverflow.com/questions/43872575/net-framework-4-6-1-not-defaulting-to-tls-1-2