Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
ashutosh_rastogi
Active Contributor
0 Kudos

Read me

SAP BI Mobile Server Single Sign On Support


SSO connections for Mobile BI Client - Users do not create these connections manually, instead they can directly import these connections from the Configuration Server (MOBIServer)

Steps

  • Administrator can configure these connections at following location
    • Copy the server.properties from default folder in to custom folder (<WebAppsROOT>\MOBIServer\WEB-INF\config\custom)
    • Then modify the server.properties file in custom folder
  • Choose your new connection identifier, say we choose 'mysso'. Add that to mobi.connections
    • mobi.connections=mysso
  • Choose a display name for your connection
    • mysso.DisplayName=Corporate_BI
  • For any SSO connection the first property that you need to enable is
    • "mysso.BOBJ_MOBILE_SSO_ENABLED=true"
  • For providing identity on client via Basic Auth
    • mysso.BOBJ_MOBILE_SSO_TYPE=TRUSTED_AUTH_BASIC
  • Else for providing identity on client via Form Auth
    • mysso.BOBJ_MOBILE_SSO_TYPE=TRUSTED_AUTH_FORM
  • Configure CMS as follows (It should be noted that this value should match with <id>.aliases properties configured in sso.properties at mobile server, else you will get MOB00902 error, null is not a valid authentication scheme)
    • mysso.BOBJ_MOBILE_CMS=boe.xyz.corp:6400
  • Additionally following properties need to be configured
  • Save the server.properties file


Now deploy the MOBIServer again after changes mentioned above. Once done, you can execute the following URL to check if the properties are configured correctly or not


http://<server>:<port>/MOBIServer/MobiConfigurationServlet?RequestType=ServerList


In response, you should be seeing an XML with the configured properties as Key Value Pairs inside connection tag.



Disclaimer and Liability Notice

This document may discuss sample coding or other information that does not include SAP official interfaces and therefore is not supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade. SAP will not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document and anyone using these methods does so at his/her own risk. SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of this technical article or code sample, including any liability resulting from incompatibility between the content within this document and the materials and services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable with respect to the content of this document

2 Comments