How to show power BI report in local ASP .NET MVC - asp.net-mvc-4

Hi is there a way to show power BI reports without embedded or using Azure in an ASP .NET MVC Project? Is for a local project, I already have the report done but most of the tutorials I have found always embedded it or use an SDK that later needs to payed

No, Power BI elements can be rendered only by Power BI (either Power BI Service in the cloud or Power BI Report Server on premise). Your only option to do this is to publish the report to one of these two and then to embed it in your web application.
Depending on the authentication type and where the report is hosted, there are different ways to embed it. Here are some of them:
Embed a report in a secure portal or website
Embed a Power BI Report Server report using an iFrame in SharePoint Server
Tutorial: Embed Power BI content using a sample embed for your customers' application
Tutorial: Embed Power BI content using a sample embed for your organization application

Related

How can i put my destop application online

I am writing codes on Vb.Net. I am curious about if i write my desktop on VB.Net then is it possible to convert it as a web application.
To be more specific: I am writing a CRM software on VB with Crystal Reports. But i want to carry my desktop app to my web site.

SSRS Solution Deployment

I have developed SSIS Package to fetch data from SharePoint Lists and importing to the SQL Server Tables. I am going to deploy this package as a Project Deployment Model.
From these SQL Tables, I have built SSRS Reporting Solution including few reports and Deployed it on my Development SharePoint Site.
But now, I have no idea how to send this solution with reports to the Client Side.
I have checked below utilities but not getting the exact idea of what I should do.
http://rsbuild.codeplex.com/
http://msdn.microsoft.com/en-us/library/ms162839%28v=sql.110%29.aspx
SQL Server version I am using is SQL Server 2012 and Data tools version is also 2012.
Please guide me here.
Thank you,
Mittal.
To deploy your reporting objects, you right-click on the project in Visual Studio then select deploy and configure the server to deploy to.
If you are trying to get an already deployed package, you can use the import wizard:
e.g.
http://msdn.microsoft.com/en-us/library/hh270294.aspx
Then the report server can be accessed by the client browser - e.g. in internet explorer, browse to to: http:
//reportserver/reports
Where "reportserver" can either be the server's ip address or reporting server name.
You can also modify these reports using the report builder tool, that will allow you to edit the rdl files on the server - e.g. when you browse to the reports, you can select edit with report builder.
If you are using sharepoint, you can use sharepoint authentication mode or you can set up access based on active directory groups at the folder level, if the client is browsing to the reports using the web browser.

My SharePoint 2010 SSRS Data Sources are being disabled, and I can't figure out why

I am having a problem with SSRS data sources being mysteriously disabled in a SharePoint 2010, SSRS integrated-mode environment.
When I set up the data source, it is saved and I verify that it is enabled. I can also successfully execute a report that uses that data source. At some point later, it is disabled. I can't figure out why, and it's driving me crazy.
Has anyone else experienced this?
My environment:
SharePoint 2010 Farm
One WFE
Two SharePoint-integrated SSRS app servers
One database server
Read this two articles:
Sharepoint dropping link to Data Source for SSRS reports
http://social.msdn.microsoft.com/Forums/sqlserver/en-US/91016bff-20e7-446a-bb70-7be407096faf/sharepoint-dropping-link-to-data-source-for-ssrs-reports
Reporting Services Data Source are getting disabled when deployed on SSRS Integrated mode
http://connect.microsoft.com/SQLServer/feedback/details/742238/reporting-services-data-source-are-getting-disabled-when-deployed-on-ssrs-integrated-mode
In a nutshell:
It was related to some sort of problem with the Encrytion Keys set up in Reporting Services Configuration Manager .... Sharepoint Integration was also showing as Not Configured (despite the fact that it was working in Integration mode)
When I put in the Windows Account password under Windows Service Identity it once again prompted for saving the Encryption Key to a file ... once this was done Sharepoint Integration shows as Configured and the nightly problem (2AM when the Reporting Services daily maintenance programs run) goes away ....

What's the difference between Pentaho BI Platform Community Edition and Pentaho Kettle?

Is it just that one is web based (BI Platform Community Edition) and the other is an application (Kettle). Can Kettle be access through a web browser?
BI Platform/Server is a web platform for performing data mining and running reports.
From the Pentaho community website:
"...the Pentaho BI Server which functions as a web based report management system, application integration server and lightweight workflow engine (action sequences.)"
While it can be used to create action sequences, it lacks the features of Kettle, which is a fully-fledged desktop ETL tool. Kettle provides none of the analysis or reporting functionality found in the BI server, and BI server lacks the ETL capabilities. They are two very different tools.

How to trasform a microsoft sql server report service in web application

How can i trasform a microsoft sql server report service in web application or something that i can access on the net?
thanks to all that would help me
You've got a bunch of different options - see:
Integrating Reporting Services into Applications
Using the Report Server Web Service/SOAP APIs
Extending/Integrating Reporting Services using RS Programming
There's a asp:ReportViewer control, which allows you to either display a local *.rdlc file containing a report definition, or you can also hook that up to a server-side *.rdl file on your reporting server.
Is that what you're looking for? It can render and show the report you defined on a ASP.NET page.