Hi,
Can anyone help me. I have a solution that uses a System.Windows.Forms.WebBrowser control to do URL access for SSRS reports. Recently moved this to SQL 2014 from SQL 2008R2. Due to complexities of the system using ReportViewer control is not an option. MUST use URL access.
Previously a Request like
Would trigger a subsequent POST redirect like:
By means of some jscript I was overriding the XMLHttpRequest.open & XMLHttpRequest.send to be able to intercept this traffic and capture the ExecutionID which was returned.
This ExecutionID could then be used for subsequent page requests setting it to the rs:&SessionID URL parameter. This is important because it keeps the report in the same session for reasons I don't need to go into here. When looking at ExecutionLog3 sproc on the report server DB you only had a single entry for the firt page accessed then no new entries.
THIS IS NO LONGER WORKING. This subsequent request is not happening. Can anyone help with this. I tried using <sessionState cookieless="true" /> because this is supposed to cause the redirect but I am not having any luck.
This was all working in SSRS 2008R2 and now does not in SSRS 2014
Thanks for any assistance.