Reputation: 1625
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?
Upvotes: 25
Views: 70852
Reputation: 140
You can do these steps to get the correct Report Service URL
Upvotes: 0
Reputation: 89
Just to add to this, I also came upon this problem. My report server was working fine for months, I've got around 30 reports and make constant updates to them re deploying reports or creating new ones almost every week, however it just stopped deploying one day (although I could see them in the application we have bound them to)
The error was a 502 host not found. I have a feeling it was something to do with IT making changes in my company however all I needed to do to fix it was change the report server name to local host in the property settings.
Project / [Project Name] Properties
on the general tab in the TargetServerURL it used to say:
but then I changed it to this:
and it started working again with no problems. Hope this helps someone, SSRS is a real pain sometimes.
Upvotes: 1
Reputation: 964
Use http://localhost/reportserver
or http://mohammad-pc/reportserver
as TargetServerURL in the project properties.
Upvotes: 0
Reputation: 1592
recently I was having the same issues... Testing I found that you need go to Project -> Properties and in General and change the set the following options to:
TargetReportPartFolder: [Virtual Diretory of Report Manager URL] TargetServerURL: http://yourPCName/[Virtual Diretory of Web Service URL]
Thats work good for deploy your project
Upvotes: 3
Reputation: 63699
Typically, in a default installation, you'll have two URL's:
http://yourmachine/ReportServer
- for accessing the web service and deploying reportshttp://yourmachine/Reports
- for accessing the browser-based management front-endDepending 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
Upvotes: 38
Reputation: 1625
I found the solution. My URL is wrong. To get the correct URL I went to Start menu > SQL Server 2008 > Configuration Tools > Reporting Services Configuration. On Web Service URL section there is a Virtual Directory that is the directory of my SSRS directory on my computer. So the correct URL is "http://localhost/[Reporting Service Virtual directory]". In my case it is "http://localhost/ReportServer_SQL2008".
There is a good article here:
Upvotes: 15