Reputation: 7840
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
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:
Upvotes: 4
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:
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