I want to pass user id and shared secret in URL for BO in 4.1. Can someone please describe step by step how trusted connection works via query sting. In BO 4.1.
We have url in which I am passing user id and shared secret in 3.1 but the same is NOT working in 4,1. Any inputs is appreciated!!
I just don’t have that line, I only have the other 3. I think there’s a typo in the 4.1 SP2 user guide, where it tells you to set the shared secret parameter to something wrong.
Do you get any error message or it just does nothing? What do you have your default authentication set to for Launchpad? You restarted Tomcat after making the file changes?
I think we have to programmatically pass the user id to the logon page. For this I am planning to create a prelogon page with the following code. But where do I put this prelogon page and does it require accompanied web.xml page??
<%
String user = request.getParameter(“user”);
response.sendRedirect(“/BOE/BI?username=”+user);
%>
You may need to use that prelogon.jsp for the eventual solution, but if the basic query string method is not working I would expect the other method won’t work either.
It defaults to Enterprise, but you can check your authentication configuration in:
I know it doesn’t help much, but really all I had to do to get the query string piece working was in the SAP note I referenced. If you can provide any screenshots of the Trusted Auth configuration, snippets of your config files where they have been modified, etc. that may help.
I created a prelogon page to capture the user id in session and pass to the logon page in BO 4.1/ But when I click on the link, it is not working - it is giving missing page error.
Code for prelogon.jsp page:
<%
String user = request.getParameter(“user”);
response.sendRedirect