-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Report server URL Merging #11
Comments
Can you try with the latest version? If you still are having the problem can you post your component.ts code where you are specifying the report. |
Hi, I am fcing same issue, I have latest version.2.0.7 Here is my component code. import { Component, OnInit } from '@angular/core'; @component({ constructor() { // public reportUrl: SafeResourceUrl; reportServer: string = 'http://XXXXXXXXXX/ssrsreports'; showParameters: string = "true"; It produces url Where as changing url to this works. |
Any update on this? I'm facing the same issue. My code looks very similar to @dheerajsk. Please assist! |
reportServer: string = 'http:///ReportServer/Pages/ReportViewer.aspx'; For me , it was a solution to add "ReportServer/Pages/ReportViewer.aspx" to reportServer. |
It's add additional "?/" symbols when merging the reportServer and reportUrl. Please refer the example.
http://myreportserver/reportserver?/MyReports/SampleReport&rs:Embed=true&rc:Parameters=true&rs:ParameterLanguage=en-us&rc:Toolbar=true
Due to this it's gives 404 error when calling the api.
The text was updated successfully, but these errors were encountered: