Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
titleBasic Authentication with WebLogic

Most API are setup to use Basic Authentication except where noted. In order to use Basic Authentication with WebLogic, please set enforce-valid-basic-auth-credentials to false in domain.

You can add following after <node-manager-password-encrypted> in <security-configuration> tag.

Code Block
languagexml
themeRDark
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials>

It should be in this order:


Code Block
<security-configuration>
......
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-
credentials>
<use-kss-for-demo>true</use-kss-for-demo>
</security-configuration>


Or, use wlst to set the property:


Code Block
connect('weblogicUser','weblogicPassword','t3://host:port)
edit()
startEdit()
cd('SecurityConfiguration/Your_Domain')
set('EnforceValidBasicAuthCredentials','false')
save()
activate()




Version 1 API Details

Version 1 APIs use Basic Authentication.

...