Discussion of article "Securing MQL5 code: Password Protection, Key Generators, Time-limits, Remote Licenses and Advanced EA License Key Encryption Techniques" - page 5
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
and what does the "Licence server not connected. " ?
By the way, do you know: https://www.mql5.com/en/forum/432897?
A simple search for RemoteProtectedEABase6.
and what does the "Licence server not connected. " ?
By the way, do you know: https://www.mql5.com/en/forum/432897?
A simple search for RemoteProtectedEABase6.
and, what does that tell you: " Licence server not connected. " ?
What does it tell me? Well what, no connection ... I don't know what you mean by this question.
The linked article is nice but doesn't help me.
I use WinInet.dll.
With the best of my knowledge I can't think of where the error should be.
I also tried to use sockets in the past, but I stopped because the server blocks until it gets something ...
There was also once a solution using shared memory - I couldn't get that to work either.
I would use a RAM disc and then simply write, read and delete files there with the Windows functions(kernel32.dll), that works and is quite simple.
I also tried to use sockets in the past, but I stopped because the server blocks until it gets something ....
Do I understand correctly that I first have to send all the data and then ask if there is a connection?
Well, according to the client-server model, the server is started first, because it waits for the questions from the (many) client(s) and then the client(s).
Nothing happens in the server's programme (blocked) until something comes from the clients, then it does something briefly and then falls back into its waiting state.
Search for trade copier in the CodeBase...Well, according to the client-server model, the server is started first, because it waits for the questions from the (many) client(s) and then the client(s).
Nothing happens in the server's programme (blocked) until something comes from the clients, then it does something briefly and then falls back into its waiting state.
Deepl says this: https://www.deepl.com/translator#en/de/License%20server%20not%20connected
The question now is why? Is it running? Protected? ...
Hello, how can I put item 7 in my EA to avoid decompiling the ex.5 file?
Do you have code examples to avoid this?
Could you explain in detail?
Just as a small note: in MQL5 the compiler already strips out variable names, function names and comments when generating the .ex5.
The executable is therefore already quite "opaque", so obfuscation by renaming identifiers doesn't really add an extra layer of protection here.