C Cor Active Member Licensed User Longtime User Nov 19, 2010 #1 When there is a fault detected it show on the device the credentials, this should be encrypted e.g. when setcredentials after initialize maybe there are some other circumstances when setcredentials are shown grCor
When there is a fault detected it show on the device the credentials, this should be encrypted e.g. when setcredentials after initialize maybe there are some other circumstances when setcredentials are shown grCor
Erel B4X founder Staff member Licensed User Longtime User Nov 19, 2010 #2 Where did you see it? As part of the original source code line?
C Cor Active Member Licensed User Longtime User Nov 19, 2010 #3 Just place the setcredentials EDIT: BEFORE initialize wwwCli.SetCredentials("NAME","[PASSWORD") wwwCli.Initialize("Client") and you will see a message on the device with the source code line with setcredentials(name,password) with nullpointerException maybe the problem is that a debug info is also compiled into the program grCor Last edited: Nov 19, 2010
Just place the setcredentials EDIT: BEFORE initialize wwwCli.SetCredentials("NAME","[PASSWORD") wwwCli.Initialize("Client") and you will see a message on the device with the source code line with setcredentials(name,password) with nullpointerException maybe the problem is that a debug info is also compiled into the program grCor
C Cor Active Member Licensed User Longtime User Nov 19, 2010 #4 If i place a try catch then it is not shown Try wwwCli.SetCredentials("name","password") wwwCli.Initialize("Client") Catch ToastMessageShow("fault",True) End Try grCor
If i place a try catch then it is not shown Try wwwCli.SetCredentials("name","password") wwwCli.Initialize("Client") Catch ToastMessageShow("fault",True) End Try grCor
agraham Expert Licensed User Longtime User Nov 19, 2010 #5 You won't see the data if you pass variables instead of literal strings into SetCredentials.
Erel B4X founder Staff member Licensed User Longtime User Nov 19, 2010 #6 You can disable this data by unchecking Project - Include Debug information.