Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"The specified report server url could not be found" error while deploying to reporting server

Tags:

I want to deploy a report that I have created in SQL Server Business Intelligence Development Studio 2008 R2. I have set TargetServerURL to http://mohammad-pc/Reports. I can access this path through a browser, but want to deploy my report I get:

"the specified report server url could not be found"

Is there any other setting that I missed?

like image 824
Karadous Avatar asked Jul 01 '12 05:07

Karadous


People also ask

How do I find my SQL Server Reporting Services URL?

In the Reporting Services Configuration Connection dialog, verify the Server Name and select the Report Server Instance. Click Connect to connect to your server. In the left-hand pane, select Report Manager URL.

How deploy RDL report on server?

By Uploading RDL file in Report Server.Open SSRS Server from webportal URL. There, you will see the upload button. Click the upload option and browse the rdl file of the report from the location. It uploads your report to the report server.


1 Answers

Typically, in a default installation, you'll have two URL's:

  • http://yourmachine/ReportServer - for accessing the web service and deploying reports
  • http://yourmachine/Reports - for accessing the browser-based management front-end

Depending on your setup, the first URL may differ a bit, for example the port number may be different or a suffix like _SQLEXPRESS may be added.

See also the last section of this documentation for some example URLs. Here's a relevant quote on what the links may look like:

...what a report server URL might resemble:
- http://localhost/reportserver
- http://localhost/reportserver_SQLEXPRESS
- http://sales01/reportserver
- http://sales01:8080/reportserver
- https://sales.adventure-works.com/reportserver
- https://www.adventure-works.com:8080/reportserver01

...URLs that you use to access Report Manager...
- http://localhost/reports
- http://localhost/reports_SQLEXPRESS
- http://sales01/reports
- http://sales01:8080/reports
- https://sales.adventure-works.com/reports
- https://www.adventure-works.com:8080/reports

like image 132
Jeroen Avatar answered Oct 09 '22 23:10

Jeroen