cancel
Showing results for 
Search instead for 
Did you mean: 
Community_Admin
Community Team Member
Community Team Member

This article will describe how to embed Sisense dashboards into Salesforce, and use the logged in Salesforce user to authenticate in Sisense.

Users have already logged into Sisense, so we don't want to make them log in again.  The example here will figure out the logged in user's email, and pass it to Sisense to authenticate.

For the sake of these instructions, we will assume your Sisense server has a url of https://sisense.mycompany.com.  Anywhere you see this referenced in this document should be swapped out with your server url.  

Steps

Step 1 - Install PHP

Open the windows Server Manager, and you should see a link to add roles and features. If its not shown on the dashboard, then look under the Manage menu at the top right of the screen. Go through the wizard until you get to the Server Roles page. Look for Web Server (IIS) -> Web Server -> Application Development -> CGI, and make sure the box is checked. Complete the wizard and CGI will be enabled.

Community_Admin_0-1635073494267.png

If you don’t have it already, download and install Microsoft’s Web Platform Installer.  This tool automates the setup of web frameworks, and will be used to install & configure PHP.  After installation, open IIS Manager, and click the link for Get New Web Platform Components.  

Community_Admin_1-1635073494209.png

Search for PHP 5.6.0, and run the installer.  This should configure PHP to work with IIS for you.  

Community_Admin_2-1635073494231.png

You may need to also install the Microsoft Visual C++ Redistributable, which can be found at this link.      

Step 2 - Create a PHP Application on your web server

Download the attached SSO_Scripts zip file, and extract it to C:\php\ on your Sisense server.  In order to run these scripts, they will have to be added to the web server as an application.  Open the settings.php file and make sure to change your $server variable to the URL to your web server (https://sisense.mycompany.com).  Also update the $key variable to match the Shared Secret in your Sisense Web's Single Sign On page.  

Community_Admin_3-1635073494134.png

Open IIS manager, and go to the SisenseWeb website. Right click on the website name and add a new application. Set the alias as php and the physical path to C:\php\ 

Community_Admin_4-1635073494075.png

Restart IIS and open your web browser to https://sisense.mycompany.com/php/PhpInfo.php.  You should see a page of information describing your PHP installation, which confirms that PHP is configured properly.

 

Community_Admin_5-1635073494089.png

Step 3 - Setup Single Sign on in Sisense

Open up the Sisense Admin web page, and switch to the SINGLE SIGN ON tab.  Use the EDIT button to modify the Remote Login/Logout URLs.  For the Remote Login URL, specify the full path to your sso.php script.  For the Remote Logout URL you can use the url to the login page, which is normally https://sisense.mycompany.com/app/account#/login/.  Once this is setup, click the green SAVE button and use the toggle to enable Single Sign On.

Community_Admin_6-1635073494072.png

Step 4 - Embed Sisense within a VisualForce page

 At this point, Sisense is configured for Single Sign On and the next step is to embed a dashboard that passes the user's info to Sisense.  To do this, create a new VisualForce page in SalesForce and copy in the below code.  

<apex:page> 
  <iframe id='sisenseDashboard' src='#' style='width:100%; height:97vh; border:none;' scrolling='no'/>
  <script type="text/javascript">
    // Get the user's email
    var email = UserContext.userName;
    // User settings
    var dashboard= "MyDashboardID";
    //var widget = "MyWidgetID";                              // Uncomment for embedding a single widget
    var widget = "";                                          // Leave as is for embedding the entire dashboard
    var formatting = "h=true&l=false&r=false&embed=true";
    var ssoUrl = "https://sisense.mycompany.com/php/salesforce.php";
    // Set the URL     
    var url = ssoUrl + "?email=" + email + "&dashboard=" + dashboard+ "&widget=" + widget + "&formatting=" + encodeURIComponent(formatting);   
    var myIframe = document.getElementById("sisenseDashboard");
    myIframe.src=url;
  </script>
</apex:page>

You will need to replace the dashboard, widget (optional), formatting, and ssoUrl variables with your desired settings.  Save the page, and grant security access to anyone you want to share with.  When you navigate to the web page, it will grab your email from SalesForce and pass it to Sisense as it loads your dashboard.

Community_Admin_7-1635073494260.png

Notes

Download:

SSO_Scripts.zip

Version history
Last update:
‎10-24-2021 04:07 AM
Updated by:
Contributors
Community Toolbox

Recommended quick links to assist you in optimizing your community experience:

Developers Group:

Product Feedback Forum:

Need additional support?:

Submit a Support Request

The Legal Stuff

Have a question about the Sisense Community?

Email [email protected]

Share this page: