We are running SQL 2016 standard and have two issues that may or may not be related.
First, I can upload .txt files to the SSRS website, so I know permissions, firewall, basic IE settings, etc are all ok. However, trying to upload a .rdl file fails with "An error has occurred. Something went wrong. Please try again later."
Second, trying to edit a report via the Edit in Report Builder button fails with "Connection failed. Unable to connect to the server that is specified in the URL." We have SQL 2016 Report Builder installed on the workstation.
I enabled extra logging by putting the following in ReportingServicesService.exe.config
<RStrace>
<add name="FileName" value="ReportServerService_" />
<add name="FileSizeLimitMb" value="32" />
<add name="KeepFilesForDays" value="14" />
<add name="Prefix" value="tid, time" />
<add name="TraceListeners" value="debugwindow, file" />
<add name="TraceFileMode" value="unique" />
<add name="HttpTraceFileName" value="ReportServerService_HTTP_" />
<add name="HttpTraceSwitches" value="date,time,clientip,username,serverip,serverport,host,method,uristem,uriquery,protocolstatus,bytesreceived,timetaken,protocolversion,useragent,cookiereceived,cookiesent,referrer"
/>
<add name="Components" value="all:4,http:4" />
</RStrace>
The HTTP log has entries for when we run reports, but I don't see anything when trying to upload a .rdl or when it fails to connect with Report Builder. Running reports from the website works fine. Other logs like ReportServerService are even less helpful and for the most part just repeat lines like.
VERBOSE: ServiceAppDomainController::ServiceMaintenanceInternal - Mark the WindowsService (worker) AppDomain as active.
Has anyone seen this before and or knows where else we can check to help identify the cause of these problems? Thanks in advance.