I have LDAP configured in Maximo, so I do have to use Authorization header instead of maxauth.
Also I have read from the documentation that it is also necesary to concatenate 'Basic ' to the encoded64 user:password string.
I tried to change the maximo-login.html to:
maximoLoginAjax.headers['Authorization'] = 'Basic ' btoa(${this.get('username')}:${this.get('password')})
However, I am unable to make it work.
I have LDAP configured in Maximo, so I do have to use Authorization header instead of maxauth.
Also I have read from the documentation that it is also necesary to concatenate 'Basic ' to the encoded64 user:password string.
I tried to change the maximo-login.html to:
maximoLoginAjax.headers['Authorization'] = 'Basic ' btoa(
${this.get('username')}:${this.get('password')})However, I am unable to make it work.