FindBI role (looks like) not working with Find 12.0.0
ciroppina opened this issue · 3 comments
Dear Sirs,
looks like the FindBI Idol role is no more working in Find 12.0.0
Also I attach my (unchanged, since Find 11.6) config.json
config.json.zip
My launching command is as follows:
java -Dserver.reverseProxy=true -Dfind.reverse-proxy.pre-authenticatedroles=FindUser,FindBI -Dfind.reverse-proxy.pre-authenticated-username=sascuser -Didol.find.home=.\home -Dserver.port=15080 -jar find.war_12.0
where 'sascuser' is a mamber of both FindBI and FindUser roles
I do not see some familiar UI items anymore, such as:
- a text input field for filtering database and parametric fileds names
- SAVE and SAVE SNAPSHOT buttons
- Share Saved Searches link
- and so on...
All the UI options you mention are controlled by the presence of the FindBI role on the user. It's because you have a typo, there's a missing '-' between 'authenticated' and 'roles' in your
-Dfind.reverse-proxy.pre-authenticated-roles=FindUser,FindBI
If you stop the existing server, add the missing '-' to your launch command and run it again it should work.
(the default for find.reverse-proxy.pre-authenticated-roles is FindUser; so you're still getting the FindUser UI options even though there's a typo in your command)
You are right,
closing...