Hello,
Follow the steps below.
Enable remote errors through script
Create a text file and copy the following script into the file.
Public Sub Main()
Dim P As New [Property]()
P.Name = "EnableRemoteErrors"
P.Value = True
Dim Properties(0) As [Property]
Properties(0) = P
Try
rs.SetSystemProperties(Properties)
Console.WriteLine("Remote errors enabled.")
Catch SE As SoapException
Console.WriteLine(SE.Detail.OuterXml)
End Try
End Sub
Save the file as EnableRemoteErrors.rss.
Click Start, point to Run, type cmd, and click OK to open a command prompt
window.
Navigate to the directory that contains the .rss file you just created.
Type the following command line, replacing servername with the actual name
of your server:
rs -i EnableRemoteErrors.rss -s http://servername/ReportServer
Best regards,
Radoslaw Lebkowski
Uzytkownik "nicknack" <roezohar@gmail.com> napisal w wiadomosci
news:1170747019.500396.131190@v45g2000cwv.googlegroups.com...
[quoted text, click to view] > Hello,
> I got the error:
> ______________________
> Reporting Services Error
>
> * For more information about this error navigate to the report
> server on the local server machine, or enable remote errors SQL Server
> Reporting Services
> ______________________
>
>
> I saw the answer:
> "You could set the "EnableRemoteErrors" configuration value to True in
> the ReportServer.ConfigurationInfo database table."
>
> How can I get to the ReportServer.ConfigurationInfo database table?
>
> I am on the reportservice server and I run "reporting services
> configuration manager" and the "sql server managment". I didn't saw
> that option :(
>
> Where is this configuration?
>
> Any help?
> Thanks.
>