Click here to Skip to main content
15,899,313 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
hi Programmers i am facing lot of problem regarding this issue

when i am clicking on SSRS report server it is asking username and password in windows authentication please solve my problem

Thanks in advance
Posted
Updated 30-Apr-14 19:31pm
v2
Comments
DamithSL 1-May-14 1:43am    
you may need to configure your SSRS server to allow anonymous access, https://www.google.lk/search?q=ssrs%20anonymous%20access

Here is the Technet article that should help you out : http://technet.microsoft.com/en-us/library/cc281310.aspx[^]
 
Share this answer
 
Comments
sonu jnnce 6-May-14 1:03am    
please explain me in brief
From the Tech net:



XML
To configure a report server to use Basic authentication


1.Open RSReportServer.config in a text editor.

The file is located at <drive>:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer.


2.Find <Authentication>.


3.Copy one of the following XML structures that best fits your needs. The first XML structure provides placeholders for specifying all of the elements, which are described in the next section:







Copy


<Authentication>
      <AuthenticationTypes>
             <RSWindowsBasic>
                   <LogonMethod>3</LogonMethod>
                   <Realm></Realm>
                   <DefaultDomain></DefaultDomain>
             </RSWindowsBasic>
      </AuthenticationTypes>
      <EnableAuthPersistence>true</EnableAuthPersistence>
</Authentication>


If you are using default values, you can copy the minimum element structure:







Copy


      <AuthenticationTypes>
             <RSWindowsBasic/>
      </AuthenticationTypes>



4.Paste it over the existing entries for <Authentication>.

If you are using multiple authentication types, add just the RSWindowsBasic element but do not delete the entries for RSWindowsNegotiate, RSWindowsNTLM, or RSWindowsKerberos.

To support the Safari browser, you cannot configure the report server to use multiple authentication types. You must specify only RSWindowsBasic and delete the other entries.

Note that you cannot use Custom with other authentication types.


5.Replace empty values for <Realm> or <DefaultDomain> with values that are valid for your environment.


6.Save the file.


7.If you configured a scale-out deployment, repeat these steps for other report servers in the deployment.


8.Restart the report server to clear any sessions that are currently open.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900