http client setcredentials

Cor

Active Member
Licensed User
Longtime User
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
 

Cor

Active Member
Licensed User
Longtime User
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:

Cor

Active Member
Licensed User
Longtime User
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
 
Top