5 Answers, 1 is accepted
In our local test environment, the report can be opened, locked, updated and published successfully - Working with Report Server Reports.
Note that on you can select to keep the lock on the file, and if it is the selected option the file remains locked even after the changes are submitted to the server.
We will need some additional information in order to troubleshoot the described issue. You can open new support ticket and send is the following:
- While the Report Designer is open go to the Help menu and check the Report Designer Version number.
- Also, use Fiddler to record from the downloading of the report for editing to the publishing. This will allow us to check the requests sent to the server and their responses in Fiddler - Inspectors - Request/Response - Raw tabs. The information can be saved in SAZ file and forwarded to us.
- Check the server and client machines Event Viewers and search for error logs related to the Standalone Report Designer and the Report Server.
Regards,
Silviya
Progress Telerik
Silviya,
Thanks for your detailed reply. I've compiled all the information you outlined and I've created a support ticket. Looks like I'm getting a 500 error from the server when attempting to publish. Nothing in the event viewer on the server and the only error message coming back is "An error occured". Not sure what's going on, but hopefully whoever works the support ticket can help me find out.
Thanks...
-Tony
Hi Anthony, I'm having the same problem, did you solve it?
Thanks!
Yes! I opened a support ticket and we got to the bottom of it. Our issue turned out to be a mismatch in host names in webhooks configuration. We moved our instance from one EC2 instance to another, and I forgot to change the url in configuration.
Hope that helps.....good luck!
Please check whether your web hooks configuration URL is the same as your report server host. To do that, go to report server application Configuration page and navigate to WEBHOOKS section. Check the Report Server base URL.
I hope that this would help. If not, I would ask you to attach a Trace listener to the Report Server by adding/uncommenting the following code to/in the Web.config file of the Report Server application deployed by default in (Telerik Report Server installation folder)\Telerik.ReportServer.Web (e.g. C:\Program Files (x86)\Progress\Telerik Report Server\Telerik.ReportServer.Web) :
<
system.diagnostics
>
<
trace
autoflush
=
"true"
indentsize
=
"4"
>
<
listeners
>
<
add
name
=
"myListener"
type
=
"System.Diagnostics.TextWriterTraceListener"
initializeData
=
"C:\Temp\Telerik.ReportServer.log"
/>
<
remove
name
=
"Default"
/>
</
listeners
>
</
trace
>
</
system.diagnostics
>
Regards,
Silviya
Progress Telerik