Report Server Web Urls

Hi, 
SQL 2008R2 (Standard) 
Windows Server 2012 
Having problems accessing SSRS on a new commissioned SQL server.  In the "Web Service URL" page of the "Reporting Services Configuration Manager", I'm clicking on the link next to the label "Report Server Web Urls".  I'm
prompted for a domain username/password, none of which appear to work - the credentials box just keeps reappearing. 
I know these credentials are OK as one of them is my own domain username/password. 
There is nothing around this time in the event log or the SQL server log(s),  however there are a number of these much earlier on: 
Login failed for user '***\*****'. Reason: Token-based server access validation failed with an infrastructure error. Check for previous errors. [CLIENT: <local machine>]
I have since rebooted the server and tried again, same result but there is nothing of value in the logfile 
C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\LogFiles
Or in the logfiles available from SSMS. 
Any ideas? 

Hi The real Slartibartfast,
According to your description, when you tried to access SSRS on a new server, you got the error message: Reason: Token-based server access validation failed with an infrastructure error. Check for previous errors. [CLIENT: <local machine>].
State 11 corresponds to “Valid login but server access failure”, which means that SQL Server was able to authenticate you, but weren't able to validate with the underlying Windows permissions. It could be that the Windows login has no profile or that permissions
could not be checked due to UAC. To troubleshoot the problem, please refer to the following steps:
If the login is directly mapped to the list of available logins in the SQL instance, then check if the SID of the login matches the SID of the Windows Login.
Turn off UAC or running SSMS as administrator.
For more information about specific Login Failed error messages, please refer to the following blog:
http://blogs.msdn.com/b/sqlserverfaq/archive/2010/10/27/troubleshooting-specific-login-failed-error-messages.aspx
If you have any more questions, please feel free to ask.
Thanks,
Wendy Fu
If you have any feedback on our support, please click
here.
Wendy Fu
TechNet Community Support

Similar Messages

  • SQL 2012 R2 - SSRS with the Report Server Web Service URL, can't access

    Hello:
    I am installing Dynamics CRM 2013.  When I am on RS Configuration manager; I am running into the SSRS (SQL 2012 on Server 2012)SQL issue, can't access the
    http://servername/:80/ReportsServer or
    http://servername/:Reports web pages
    The database server has SSRS native mode installed, it is using a domain account for the service credentials.  This account also has permission to log on a service in the GPO
    Account is a domain admin and is a local administrator
    SQL server is 2012 R2 on Windows Server 2012.  User base is less than 60 people and they have SharePoint 13 on the same SQL server.  Server more than enough resources.
    Any assistance would be appreciated.
    Thanks..Dan

    Hi DCas1,
    According to your description, you could not access
    http://servername/:80/ReportsServer or http://servername/:Reports web pages from Reporting Services configuration manager, SSRS in configured in native mode and the account you used is a local administrator.
    In Reporting Services, URLs are used to access the Report Server Web service and Report Manager. Before we can use either application, we need to configure at least one URL each for the Web service and Report Manager. If we are using the Reporting Services
    Configuration tool to create or modify the URLs, we can accept the default values for a URL or specify custom values. When we create a report server URL, we must specify the following parts: Host name, port and Virtual directory. In order to improve the efficiency
    of troubleshooting, I need to ask several questions:
    Since the default URL is http://<computername>/reportserver, did you type the URLs manually? or the URLs configured in Reporting Services configuration manager are
    http://servername/:80/ReportServer and
    http://servername/:Reports?
    Could you provide detailed information of error log(default location: %programfiles%\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\LogFiles)?
    For more information about Configuring a URL, please refer to the following documents:
    http://msdn.microsoft.com/en-us/library/ms159261(v=sql.110).aspx
    http://msdn.microsoft.com/en-us/library/bb630447(v=sql.110).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Prompting for UserName and Password when I click Report Server Web Service URLs in ssrs 2008 R2

    Hi All,
                 I am using SQL Server Reporting services 2008 R2 . When I tried to open report server webservice URL in SSRS 2008 R2 It is prompting username and password. I tried to resolve the issue by deleting the <!--
    <RSWindowsNegotiate/> --> line in rsreportserver.config but still I am getting the same prompt
    and i tried by putting the server URL in trusted sites in IE also still no luck. I referred the below link 'http://blogs.msdn.com/b/lukaszp/archive/2008/03/26/solving-the-reporting-services-login-issue-in-the-february-ctp-of-sql-server-2008.aspx'
    I am getting the same error.
    Can anyone help me out to resolve this issue easily.
    Thanks
    Dathy

    Hi Dathy,
    Generally, this is a very common issue in Reporting Services 2008 R2, the blog you post is a good blog that summary the common solutions. If it doesn’t help, could you please try the following:
    Open Internet Explorer, go to Tools and click on Internet Options.
    Under the Security tab, click on Trusted sites and click the Sites button and Add Report Manager/Report Server URL to the trusted sites.
    Then click Custom Level, and check the option Automatic logon with current user name and password.
    Repeat step 3 and step 4 for Local Intranet.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Reporting Server Web Service- (FileShare) CreateSubscription: The value of parameter 'ExtensionSettings' is not valid

    I've tried to create a subscription by Web Service api calling the method CreateSubscription and I've an error: 
    > The value of parameter 'ExtensionSettings' is not valid. --->
    > Microsoft.ReportingServices.Diagnostics.Utilities.InvalidParameterException:
    > The value of parameter 'ExtensionSettings' is not valid.
     Below is my code:
    ReportingService2010 m_RptManager = new ReportingService2010();     m_RptManager.Url = "<path>/ReportService2010.asmx";     m_RptManager.Credentials = GetCredential();     string filename = Path.GetFileName(m_FileName);     string path = Path.GetDirectoryName(m_FileName);     ParameterValue[] extensionParams = new ParameterValue[7];     for (int i = 0; i < extensionParams.Length; i++)              extensionParams[i] = new ParameterValue();     extensionParams[0].Name = "FILENAME";     extensionParams[0].Value = filename;     extensionParams[1].Name = "FILEEXTN";     extensionParams[1].Value = "False";     extensionParams[2].Name = "PATH";     extensionParams[2].Value = path;     extensionParams[3].Name = "RENDER_FORMAT";     extensionParams[3].Value = m_Format;     extensionParams[4].Name = "WRITEMODE";     extensionParams[4].Value = "Overwrite";     extensionParams[5].Name = "USERNAME";     extensionParams[5].Value = m_UserName;     extensionParams[6].Name = "PASSWORD";     extensionParams[6].Value = m_Password;     ExtensionSettings extensionSettings = new ExtensionSettings();     extensionSettings.Extension = "Report Server FileShare";     extensionSettings.ParameterValues = extensionParams;     MinuteRecurrence pattern = new MinuteRecurrence();     pattern.MinutesInterval = 1;     ScheduleDefinition schedule = new ScheduleDefinition();     schedule.StartDateTime = DateTime.Now;     schedule.EndDateSpecified = false;     schedule.Item = pattern;     XmlSerializer serializer = new XmlSerializer(typeof(ScheduleDefinition));     string dateMatch;     using (StringWriter sw = new StringWriter())            {                serializer.Serialize(sw, schedule);                dateMatch = sw.ToString();            }     string reportPath = "MyReport";     string eventType = "TimedSubscription";     string description = "description";     m_RptManager.CreateSubscription(reportPath, extensionSettings, description, eventType, matchData, GetReportParameters(reportPath));
    Where have I wrong? 

    Thank for reply, I checked my parameter and I seem that (maybe) is  ok below is my parameters, do you see anything of wrong?
    <?xml version="1.0" encoding="utf-16"?>
    <ExtensionSettings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Extension xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer">Report Server FileShare</Extension>
    <ParameterValues xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer">
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">FILENAME</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">pippo.xls</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">FILEEXTN</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">False</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">PATH</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">\\10.4.44.253\D$\Data Applications\DBP\Output\DOMAIN\User\14</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">RENDER_FORMAT</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">EXCEL</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">WRITEMODE</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">Overwrite</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">USERNAME</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">domain\user</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">PASSWORD</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">xxxxxx</Value>
    </ParameterValue>
    </ParameterValues>
    </ExtensionSettings>
     

  • How to use sql report server web service (SSRS) in flex/actionscript

    Hi,
    I am trying to create a web page, that displays a report from my company's report server. I manage to import the ReportExecutionServiceService, but can't figure out how to get the report. anyone know where i can find good documentation of SSRS's WSDL (not on MSDN it didn't do much good)? or better does anyone know what steps are needed (what fields to use / initialize etc.)?

    Hi Sanjay
    First you create a report using the data source in Crystal Reports DesignerStand Alone Application and then save it to repository.
    This is the easiest way to do it.
    You can refer to Crystal Reports User guide and also BOXI Admin guide for the version you are using.
    You can download the above from help.sap.com
    Hope this helps!!
    Regards
    Sourashree

  • Report Server Web Site isn't Working (Incorrect security descriptor version)

    Hello,
    we have microsoft sql 2012 sp1 on windows server 2012 64 bit.
    and we have scom 2012 sp1 
    we had use the reporting sevices succesfully. somehow it gave an error that "An internal error occurred on the report server. See the error log for more details. (rsInternalError)"
    when i m looking the logs, i saw the error about that : Incorrect security descriptor version
    have can i fix this ?
    library!ReportServer_0-3!d58!06/02/2014-09:28:37:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: Incorrect security descriptor version, Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: An internal error occurred on the report server. See the error log for more details.;
    note:i already re-install the reporting services.

    This could be several things;
    1. If there is a pending Windows Update you might need to restart to install the updates. In any case, a restart could help
    2. Try to use ResetSRS Tool -
    http://technet.microsoft.com/en-us/library/bb309637.aspx (SCOM 2007, but still applicable for SCOM 2012)
    3. Check that the Reporting Service is running
    www.coretech.dk - blog.coretech.dk
    there isnt any updates that stay pending on the server.
    and yes reporting service is running. but when i try to run resetsrs i have got the error message.

  • What to specfify in CA Reporting services integration (Report server web service URL) when using SSL for both SharePoint and SSRS?

    Hello,
    We are using Sharepoint 2010 and SQL Server reporting services 2008 R2.    We have the sharepoint site bound to port 443 using a certificate.   We also have the same certificate bound in the reporting services configuration manager's
    web service URL tab.    In CA should we put the SSL URL or the non SSL URL?    Right now in CA it has the then non SSL URL,
    http://fakehostname/ReportServer_REPORTSERVICE.     We have some sporadic issues and I am wondering if setting this to our SSL URL will help.    Please let me know
    if you have any questions.
    Thanks,
    Sean

    Hi,
    Regarding this issue, it should be no issue for setting (https) according :
    https://msdn.microsoft.com/en-us/library/bb630447.aspx
    https://msdn.microsoft.com/en-us/library/bb677369.aspx
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/0ada85b1-e2d2-44a8-8443-74eca74f5745/ssrs-cannot-connect-to-https-sharepoint-2010-401-unauthorized
    I notice you mentioned that you have some sporadic issues, what are these issue? If there are errors, please post the detailed information about the errors.
    What is the mode type of SQL Server Reporting Service, native mode or SharePoint mode?
    The screenshot of the web service URL:
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Report Server URL page can't be displayed.

    So we attempted to upgrade sql 2012 to sql 2014 for SCCM. Upon doing so this broke reporting services.  My dbadmin reverted back to sql 2012 and now we cant get reporting services at all to work.  The issue started when he went to upgrade sql and
    it had an error on the reporting services part because of some ssl cert which I don't think we use since the service urls are all http.  I could never get the https to work the first time.
    I am doing all of the below on the sql server itself.
    in the reporting services configuration manager web service url section when you click on the report server web service url it goes to a page cant be displayed.  If you go to the report manager url section and click on the report manager site identification
    url it does take you to a webpage but says unable to connect to the remote server.
    Any one have any ideas?

    What you might do is look at the URL reservations.  In order to view what is bound to http.sys you will need to open a command prompt on the server use the following command to view records:  
    netsh http show urlacl
    If someone isn't correct, you can remove it using the following command, as an
    example:
    netsh http delete urlacl URL=https://servername:443/reportserver
    URLs also get written to the rsreportserver.config file.  So you may need to remove entries there.
    I have had to do this for failed SSRS bindings.  When making changes using netsh, do so with extreme care.  In theory, removing all your bindings using reporting services configuration manager and re-adding them is supposed to do this for you,
    but i've found out that isn't always the case.  You could always try that first.  It should be noted that in order to complete this step successfully, the report manager URL should be removed first (through the advanced button), then the web service
    URL.  When adding it back, the order is reversed, with the web service URL being added first and the report manager URL being added second.

  • Cannot Set URL For Report Server SSL Binding In SSRS 2008R2

    Hi,
    I have an SSL certificate that has a number of subject alternate names and I need the SSL binding for the report server and the report manager to be against one of these names, not the certificate name.
    However, while it is possible to set the host header for a non-SSL identity and therefore control the URL reserved, it does not seem possible to set this for an SSL identity - the edit dialogue box simply generates the URL when you choose the certificate
    from the dropdown box.
    How do I set the URL for a report server SSL binding?
    Cheers
    Dan

    Hi Charlie,
    You are correct, i am configuring SSL connections on a native mode report server and i want to configure a custom URL for it.
    However, my issue is not that I cannot see the certficate - it is that I cannot set a custom URL for SSL connections. Apologies, I should have written up an example of what I am seeing:-
    I have installed a certificate for a.company.com. It shows up fine in the certificate list/dropdown for configuring the web service URL SSL certificate.
    I can set a host header for non-SSL traffic for a.company.com and the binding succeeds. I can also set an SSL identity in the same Advanced Multiple Web Site Configuration window for a.company.com and this also binds correctly.
    However, the certficate is like a wildcard in that it supports 4 more URLs in its subject alternate name property. I would like to set an SSL identity for b.company.com which is one of those entries.
    As an aside, the certificate is also installed in IIS and succeeds in binding to b.company.com. I mention this as it shows that the certificate appears to be installed correctly and is working in its wildcard-like capacity.
    I can also successfully set a host header for b.company.com for the report server for non-SSL traffic. It is b.company.com that I would like to host the report server and manager under.
    The issue I have is that if I try to add an SSL identity for the report server web service for b.company.com using the Advanced Multiple Web Site Configuration window, there is no editable box for URL and so it does not allow me to set the URL/host
    header - it therefore always binds to a.company.com.
    I have scoured the boards for answers and there have been a couple of mentions, but neither has worked for me.
    This one talks about adding the required
    https://b.company.com/reportserver to the rsreportserver.config file and the OP describes the issue pretty much exactly as I am experiencing plus the responder talks about this guidance as coming from MS support - however when I followed the steps the result
    is the same as without the configuration:-
    http://www.sql-server-performance.com/forum/threads/ssrs-2008-host-headers-and-ssl.28571/
    Another suggestion (for which I have lost the link) was to amend the URL config in that file directly and add the required entry. Both posters claim it has worked for them so I am sure that using a wildcard certificate with SSRS does work! I think in my
    case I am missing some extra steps as it is fine to amend the config file directly, but I don't think this actually kicks off the SSL/URL binding process which is what the dialogue window does.
    Hope this helps in explaining further. I am sure this is resolvable as I cannot believe the only option for SSRS is to bind to a single domain name and ignore the other wildcard/alternate options.
    Cheers
    Dan

  • What's happaned with Web intelligence report Server

    Hello
    Im making a document about the BOE XI 3.1 server and when i saw the services in cmc web app i dont the services:
    Web intelligence report Server
    Web intelligence Job Server
    Dont this services exist anymore?
    Thanks
    Vegas

    I believe they are called adaptive processing/job servers now, from the CMC services there should be a sub category for webi, the new names are listed under there.
    Regards,
    Tim

  • HFM and Workspace 11.1.2.0 issues with opening Apps and reports via web

    Hi,
    we are running decentralized environment where we have HFM Web and App servers on Windows 2008 Server SP2 and few shared elements like OHS, HSS (Shared Services) and Workspace service from Solaris 10 SPARC (64bit) server.
    The base version is 11.1.2.0 and on Windows we have fixes from 1-9 installed whereas on top of Solaris we have no fixes/patches yet installed.
    When we test workspace from web server desktop connecting to Solaris server it seems traffic is fine as Apps are available and browsing them seems to work normally = Webserver is able to locate Workspace on Solaris, Workspace is able to connect to HFM App server and App server again able to connect HFM App db container.
    When we access to workspace url over web (the traffic according to my understanding should go via OHS to Webserver and then redirect to Solaris server Workspace and then like mentioned above.
    Something gets wrong here as when accessing Workspace url we get non-showing icons, $ characters in messed up menu rows and few error messages like :
    - Invalid or could not find module configuration
    - Required application module hfm.appcontainer is not configured. Please contact your administrator
    - Namespace Communication Error
    Also opening test report via web url workspace gives error:
    Required application module reporting.reportViewer is not configured. Please contact your administrator.
    +
    Namespace Communication Error
    Our experience from previous lower environment was that symptons like described might be caused by wrong service start order. Thus we tried to review this carefully and boot in correct order, but still problems. Also, boot order shouldn't be totally wrong as workspace works when using directly from Web server.
    If any of mentioned symptons rings anyone's bell please reply.
    Something still in firewalls or rather in configuration, OHS maybe?
    At this point we don't yet dream of proper loadbalancing or High availability, but rather get this single web and single app server server + shared elements from Solaris server to work without error messages.
    We do know that release 11.1.2.1 is supposed to fix many things, but we need to get this 11.1.2.0 working in a way or another.
    Thanks for any tips that might arise.
    Br, MK
    Edited by: user9327521 on Nov 30, 2010 4:55 AM

    Were u able to ever resolve this? And how?
    Thanks,
    Sejal

  • No current report server error

    Using Report Builder 3.0,  I get no current report server error and when I run the report I get no data. Does anyone know how I can remedy this problem?
    sukai

    Hi sukai,
    Based on your description, it seems that you have not connect report server when you run a report in Report Builder. In this scenario, I suggest that you should click the Connect option with “No current report server” in the lower-left corner.
    If you have access to the machine where SSRS is installed, you can open up the Reporting Services Configuration Manager. Then you can see the Report Server Web Service URLs in the Web Service URL tab. Another option is directly type the following URL in
    the popup window:
    http://<machine name>/ReportServer_<SQL Server instance name>
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to publish Report Viewer reports as Web Services

    I have some reports templates (.rdlc) having only business objects as data sources (no direct SQL connection). They are working well with Windows Report Viewer. Now I am think to make the reports available via web services to multiple apps. Is there
    a way to do that? Any sample?
    Thanks,
    Jason

    Hello,
    SQL Server Reporting Services provides access to the full functionality of the report server through the Report Server Web service. In order to meet your requirement, you
    can try to converting an .rdlc file to an .rdl file
    and then deploy the report to report server.
    If you want to rendering the report in your application, you can try to use the ReportViewer controls in remote processing mode.
    Reference:
    Adding and Configuring the ReportViewer Controls
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • Passing parameters to the reports server

    Query on passing parameter from URL to the report server and then to the graphic report builder. We are able to pass the parameter from URL to the report server but we don't know the way of passing this parameter from report server to the graphic bulder or
    writer module. We do not know the API call for passing the same from report server to
    the graphic builder.

    Can you tell me how to pass parameters to report server within URL.Thanks!

  • Error While requesting a report from web server

    Hi All,
    The report server has been reinstalled and when i am trying to request a report from the web server the following error occurs.
    "Error has occurred: remote server has returned an error: (500) internal server error"
    I have restarted the report server and it is running fine. This is very urgent, Can anyone help me on this?
    Appreciate a quick reply.
    Thanks in advance.
    Regards,
    Manisha.

    Hi Anand,
    a. The oracle report server reinstallation for forms and reports.
    b. Yes, the HTTP server is up and running
    c. reports are run through web application using rwservlet. The report was not listed when doing showjobs on OEM.
    I found the database credentials to be missing in the cgicmd.dat, have corrected and then tried to run the reports. the error was still prevelant. but when i ran the reports by requesting it from url i got the following error on OEM
    "Terminated with error: <br>REP-1247: BACKGROUND is deprecated. See help for more information. REP-0736: There exist uncompiled program unit(s). REP-1247: Report contains uncompiled PL/SQL. "
    even though I have compiled and placed the rdf on the report server.
    Please let me know if you need any other information.
    Thanks for your reply.
    Regards,
    Manisha.

Maybe you are looking for