-
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
Problems using TLSsocketz #40
Comments
Do you currently use There is a
Using an ActiveX control for networking operations is highly not recommended so best would be to migrate everything (eventually) to |
No, I don't use Winsock, I use CSocketMaster V1.5, created by Emiliano Scavuzzo. It's description: Winsock api implementation class. |
Another option is to implement a CSocketMaster replacement class which uses You don't have to implement all methods/properties of CSocketMaster but just the ones you use in your client code. p.s. Btw, |
Btw, I can only find V1.3 of CSocketMaster here. Will try make a replacement class based on this version soon. The properties/methods look very much like |
There is a new Should be able to use it as a drop-in replacement in your sources, just add If you need this compiled in a binary let me know and I'll make a separate Ax-DLL project the way other binaries get compiled as Assets under the repository's releases section. |
Sorry for the long delay... |
Why not recommended? |
Because GUI has nothing to do with networking per se. Using invisible controls on forms is a late century "invention" which was amusing and cool when VBX components first appeared. Nowadays you don't want to use a form to host a control for your networking protocol needs. You just use a regular class (or a module) to encapsulate functionality. |
I assume cTlsSocket can be used to convert from FTP to SFTP too? |
No. SFTP has nothing to do with FTP protocol. It's an SSH based sub-protocol. It is FTPS to FTP the way HTTPS is to HTTP i.e. the same protocol w/ TLS transport security. |
Unfortunately I am not very familiary with network protocols. What do I have to do to convert from FTP to Secure FTP? |
I created an application on XP which is then tested (and running) on W7, W10 and W11. It sends and reads mails using pop3 and smtp. Now I wanted to convert to vbAsyncSocket to be able to use SSL and TLS1.2. However I found some differences:
What can I do?
If necessary I can send you the sources of my classes. (comments are some times in german)
The text was updated successfully, but these errors were encountered: