Problem with authentication after deployment
-
Where do your login credentials come from? A file?
Check if all paths are correct. -
@Pl45m4 I use an online API, and while it's running in Qt Creator, the authetication runs perfectly.
the problem is when I open the .exe file and I got the error "Wrong User and password". -
That didn't answer my question :)
So you have your login credentials hard coded, are they coming from GUI or file?
-
@Pl45m4 I use an online API, and while it's running in Qt Creator, the authetication runs perfectly.
the problem is when I open the .exe file and I got the error "Wrong User and password".@LordCaca said in Problem with authentication after deployment:
online API
Is that a secure (HTTPS) URL you use to connect to?
If yes, it looks like you may have issues with the SSL handshake, probably issues with the OpenSSL libraries in PC you deployed your app.Is it possible you can gather more details about the login process (any log??) and/or capture network traffic (i.e. Wireshak) to the endpoint?
-
@LordCaca said in Problem with authentication after deployment:
online API
Is that a secure (HTTPS) URL you use to connect to?
If yes, it looks like you may have issues with the SSL handshake, probably issues with the OpenSSL libraries in PC you deployed your app.Is it possible you can gather more details about the login process (any log??) and/or capture network traffic (i.e. Wireshak) to the endpoint?
-
@LordCaca said in Problem with authentication after deployment:
online API
Is that a secure (HTTPS) URL you use to connect to?
If yes, it looks like you may have issues with the SSL handshake, probably issues with the OpenSSL libraries in PC you deployed your app.Is it possible you can gather more details about the login process (any log??) and/or capture network traffic (i.e. Wireshak) to the endpoint?
@Pablo-J-Rogina said in Problem with authentication after deployment:
Is that a secure (HTTPS) URL you use to connect to?
You didn't answer to that question...
-
@Pablo-J-Rogina said in Problem with authentication after deployment:
Is that a secure (HTTPS) URL you use to connect to?
You didn't answer to that question...
-
@LordCaca said in Problem with authentication after deployment:
if it's important
well, the idea is to confirm that the URL you're connecting to is using the HTTPS protocol.
And if so, it's likely you have an issue with the OpenSSL libraries not in the path in the scenario not working (when you "deploy" your application)
-
@LordCaca said in Problem with authentication after deployment:
if it's important
well, the idea is to confirm that the URL you're connecting to is using the HTTPS protocol.
And if so, it's likely you have an issue with the OpenSSL libraries not in the path in the scenario not working (when you "deploy" your application)
-
@Pablo-J-Rogina I solved the problem by coping some .dll files that qtdeploy didn't create. thanks for your time and help!
@LordCaca said in Problem with authentication after deployment:
I solved the problem by coping some .dll files that qtdeploy didn't create
Great! for the sake of completeness, could you please list those files and where you placed them? Thanks.


