Page 2 of 2

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Mon Apr 07, 2025 7:01 am
by Lech Kulikowski
Hello,

You are welcome.

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Wed Feb 04, 2026 8:35 am
by nickysuwandi
Dear Lech Kulikowski

I have upgrade to vs2026 and Wisej 4 and using .Net Core 10.

I am trying create tiny program to test Stimulsoft report using Html + simulsoft JS.
but i always get error
"stimulsoft.reports.js:28 Failed to load resource: the server responded with a status of 404 (Not Found)"

and
"stimulsoft.reports.js:28 File not Found ("Report/Report1.mrt") showError @ stimulsoft.reports.js:28"

In Startup.cs i had add code "app.UseFileServer();"

Is there something that i had missing?

Thanks


Lech Kulikowski wrote: Wed Mar 26, 2025 11:08 am Hello,

Please check the samples at the following link:
https://github.com/stimulsoft/Samples-R ... -Wisej.NET

Thank you.

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Wed Feb 04, 2026 7:54 pm
by Lech Kulikowski
Hello,

The report file is not found.

Thank you.

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Thu Feb 05, 2026 2:48 am
by nickysuwandi
yes the report is not found,
i had put report in "Report/Report1.mrt"
and load in using report.loadFile("Report/Report1.mrt");

why still not found, is there missing command i must add in this project?

Thanks
Lech Kulikowski wrote: Wed Feb 04, 2026 7:54 pm Hello,

The report file is not found.

Thank you.

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Fri Feb 06, 2026 5:56 pm
by Lech Kulikowski
Hello,

Please send your project for analysis.

Thank you.

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Sun Feb 15, 2026 1:40 am
by nickysuwandi
Dear Lech Kulikowski

This the project

Thank you

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Tue Feb 17, 2026 10:53 pm
by Lech Kulikowski
Hello,

You need to add a custom MIME mapping for .mrt so ASP.NET Core serves the report template as a static file instead of returning 404 for an unknown content type.

Thank you.

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Wed Feb 18, 2026 3:02 am
by nickysuwandi
Dear Lech Kulikowski

Thanks for you help.
Its working.
Lech Kulikowski wrote: Tue Feb 17, 2026 10:53 pm Hello,

You need to add a custom MIME mapping for .mrt so ASP.NET Core serves the report template as a static file instead of returning 404 for an unknown content type.

Thank you.

Re: Using the Report Viewer with .Net Core 8 and WiseJ.Net

Posted: Wed Feb 18, 2026 7:32 am
by Lech Kulikowski
Hello,

You are welcome.