Android Question HTTPJob.PostString Auth

worksoft.marco

Member
Licensed User
Longtime User
Greetings

Has anything changed in the library HttpUtils2 in version 3.00??

In the previous version, the authentication with PostString worked perfectly (following example code):

B4X:
Dim Job As HttpJob              
  
Job.Initialize("Cidades", Me)
Job.Username = usuario
Job.Password = senha
Job.PostString("http://" & endereco & "/datasnap/rest/TServerMethods1/baixaCidades", idemp)

Now, I can not authenticate to the webservice, I made a debug in the webservice and username and password are coming blank.

If you changed the way of authenticating, would like some tips accordingly.

Thanks in advance.
 
Top