-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to receive response in Windows 10 for POST request to API #42
Comments
Note that
... but only supports up to TLSv1
. . . but VbAsyncSocket supports only TLS 1.2 and TLS 1.3 incl. Next release will report protocol unsupported versions more clearly since commit 41a6373 |
witch Alternative can you suggest for having response from that server? |
You can use built-in WinHttpRequest object for older TLS versions. On Win11 it even supports latest TLS 1.3 One caveat is that it does not support gzip/deflate compression on response so traffic volume might affect performance somewhat. |
Thanks. |
I'm encountering an issue where a particular section of code is not returning a response when executed on Windows 10. The code snippet in question is as follows:
This code is intended to send a POST request to the specified API endpoint, but it fails to return a response when run on a Windows 10 environment. However, it seems to work as expected on other platforms.
Expected behavior:
The code should send a POST request to the specified API endpoint and receive a response, regardless of the operating system.
Actual behavior:
The code executes without errors, but it does not receive a response on Windows 10.
Steps to reproduce:
Run the provided code snippet on a Windows 10 environment.
Observe that no response is received.
Environment:
Operating System: Windows 10
Programming Language: VB6
The text was updated successfully, but these errors were encountered: