I have an application build with vuejs, and i want to connect SSRS reporting service, how to best practice connect my application with SSRS, with config username and password in web.config
sorry for my bad english
thanks
ik
Related
Please how do I connect my database to Asp.net.
I'm done creating the database and wants to connect it to my Vb Asp.net like how we do with php.
Thank you
I have an application using vb.net with MYSQL database in visual studio 2015 now i need to create a installation package to deploy the application to client computer.
I don't have any idea how to do this please anyone give tips how i can do this, im new with MYSQL.
It depends, what technology are you using? If you are using entity framework you should have a .config file in your project, usually it's called app.Config, you can specify your <connectionStrings> there. Else if you use SqlConnection, you'll have to change that string.
I created report in VIsual Studio that connected to CRM Onlyne using FetchXML and it works good from visual studio. Now i'm trying to deploy it on Reporting Services server. I faced with issue that i can't create DataSource from Reporting Services Manager. Do you have any ideas how to fix it. See screenshot with error https://social.microsoft.com/Forums/en-US/35df977a-c903-4fec-89f6-2f0c6b7e5a10/cant-connect-to-crm-online-from-reporting-services-manager?forum=crmdevelopment
Thank you Donal. There is answer for my question. It was surprise for me that i can't use FetchXML datasource for connect to CRM online but i found workeround. I implemented a Data Processing Extension for Reporting Servies for request data from CRM Online. For a basis i get following article http://www.codeproject.com/Articles/22946/Implementing-a-Data-Processing-Extension
I have Office 365 with Microsoft Dynamics CRM which contains business data and I have SQL Server Reporting Services on a stand-alone server that serves as a report container and my ASP.NET websites can execute these reports and people can deploy reports there.
In Visual Studio I've created Fetch XML datasource for my report supplying CRM server credentials and report runs smoothly, no problems at all. When I deploy it on SSRS server I can't execute it with the same credentials, it just throws following error:
Guid should contain 32 digits with 4 dashes
(xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
Ok, no big deal. I googled it and found out I had to enter SystemUserId and OrganizationId in credentials, although I couldn't query them directly on SQL Server I managed to get these values through MS Dynamic CRM. Entered them in datasource's login and password inputs, clicked "Test connection" and I got this error:
System.Data.SqlClient.SqlException: The EXECUTE permission was denied on the object 'p_GetCrmUserId', database 'MSCRM_CONFIG', schema 'dbo'.
Ok, google it again and obviously I have to fix SQL Server user permissions and I don't have any access (and never will) to MS Dynamics CRM's SQL Server to fix permissions issue. Why does it work in Visual Studio, but fails on SSRS server? What do I do to fix this conenction issue? Thanks.
You will not be able to run Fetch XML reports locally against a Dynamics CRM Online instance. You would need to deploy those reports to the Dynamics CRM Online organization and run them from Dynamics CRM.
It works in Visual Studio because the CRM Report Development extension makes it work for development, but it cannot be deployed directly to an SSRS server - the Fetch XML reports can only be deployed through Dynamics CRM to the SSRS server configured in CRM.
I need some help here.
I am using VS 2010 Pro. When I create an empty ASP.NET Website and add users to it either through:
Asp.Net Configuration Wizard or
through a Register.aspx page with createuser wizard
everthing works fine. I get an ASPNETDB.MDF in my App_Data folder. The membership and roles, login and logout all work as expected.
The problem is that the web.config file does not show the connection string to SQL Server Express database file. Also the membership element etc are also missing.
However, if I create an ASP.NET Website (not an empty ASP.NET website), then web.config file carries all the information.
I have tried this on
Windows 7 Ultimate with VS 2010 Pro and IIS 7.5
Windows XP Professional with VS 2010 Pro with VS builtin development server
Same results.
Any ideas?
Thanks for the help
I have found the answer.
The connection string for the ASPNETDB.MDF does not appear in web.config.
The application uses a machine wide connection string defined in the machine.config file.
For more details check my answer here.