Older Workaround (not recommended):
This workaround is only for versions below 13008. Do not try this if your version is 13008 or above. On the contrary, the following should be removed in versions above 13008.
- Add a new line in the conf/wrapper.conf:
For example, if 43 is the last added line in wrapper.conf,
wrapper.java.additional.43=-Djdk.http.auth.tunneling.disabledSchemes=
We need to add a new line with number 44 like below:
wrapper.java.additional.44=-Ddisable_login_page_csrf=true
- For starting via run.bat, search for 'tunneling' and add the following line next to the searched line in run.bat.
set JAVA_OPTS=%JAVA_OPTS% -Ddisable_login_page_csrf=true
- For starting via run.sh, search for 'tunneling' and add the following line next to the searched line in run.sh.
JAVA_OPTS="$JAVA_OPTS -Ddisable_login_page_csrf=true"
- Restart SDP service (or re-run app from run.bat/run.sh to apply the changes)