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

前端 未结 6 483

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://mohamma

相关标签:
6条回答
  • 2020-12-15 04:59

    You can do these steps to get the correct Report Service URL

    1. Open Reporting Services Configuration Manager, you can search it via windows start button
    2. You will be prompted with dialog to connect to available reporting service database, click Connect.
    3. Select Report Manager URL, you will see your url in there, usually the pattern would be http://YOURHOSTNAME:80/Reports_SQLVERSION
    0 讨论(0)
  • 2020-12-15 05:05

    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:

    http://GSV-REP01/ReportServer

    but then I changed it to this:

    http://localhost:8080/ReportServer

    and it started working again with no problems. Hope this helps someone, SSRS is a real pain sometimes.

    0 讨论(0)
  • 2020-12-15 05:07

    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

    0 讨论(0)
  • 2020-12-15 05:07

    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:

    http://alexduggleby.com/2008/07/18/sql-server-reporting-services-2008-tutorial-in-5-minutes-or-how-to-send-my-boss-a-report-from-a-view-quickly/

    0 讨论(0)
  • 2020-12-15 05:16

    Use http://localhost/reportserver or http://mohammad-pc/reportserver as TargetServerURL in the project properties.

    0 讨论(0)
  • 2020-12-15 05:17

    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

    0 讨论(0)
提交回复
热议问题