Neo-coder
Neo-coder

Reputation: 7840

How to see CDE dashboard for external user in Pentaho

Hi I am a newbie in Pentaho I used Pentaho community version Using Pentaho CDE dashboard I created my own dashboard. My question is How do I get the dashboard URL to use in viewing the my developed dashboard outside of the biserver? for a external customer?

Upvotes: 1

Views: 7851

Answers (2)

Pedro Vale
Pedro Vale

Reputation: 756

double click on the dashboard tab in PUC. This will open a new window with a direct url to the dashboard.

EDIT: If you want to be able to open a dashboard on an iframe without giving away authentication details, you can:

  • Create an user that can only access that dashboard. That way the credentials on the URL will be harmless
  • Define the dashboard accessible by the anonymous user.
  • Change the authentication method for your Pentaho server. There's a lot of information regarding that on Pentaho infocenter.

Upvotes: 4

Yeqing Zhang
Yeqing Zhang

Reputation: 1413

You may find this answer and this blog useful.

The problem you have here is the access to the URL, which is simple:

  1. right-click the CDE file (blue icon)
  2. click "Open In New Window"
  3. the URL in the new browser window is the URL you're looking for

screenshot

When adding to iframe, you may also find it convenient appending login-details (user_id=your_user_name, password=your_password) to the URL. Otherwise it requires you to log-in, which is painful to business users.

http://localhost:8080/pentaho/content/pentaho-cdf-dd/Render?solution=foo&path=&file=bar.wcdf&userid=your_user_name&password=your_password

Upvotes: 4

Related Questions