Search found 17 matches

by MichalCh
Wed Oct 25, 2017 2:13 pm
Forum: Stimulsoft Reports.NET
Topic: Generating StiNetCoreViewer from the server and sending as s
Replies: 15
Views: 10838

Re: Generating StiNetCoreViewer from the server and sending

Hello, When I took out the controller and action to brand new project I've discovered the issue. There are calls being made from front-end to actions ViewerEvent() and GetReport() and our Infrastructure is blocking those calls. Is there a way to pass to that view generated in the back-end StiNetCore...
by MichalCh
Tue Oct 24, 2017 2:43 pm
Forum: Stimulsoft Reports.NET
Topic: Generating StiNetCoreViewer from the server and sending as s
Replies: 15
Views: 10838

Re: Generating StiNetCoreViewer from the server and sending

Hello,

Unfortunately passing this.RouteData did not fix the issue, same error occurs. I've tried to pass current this.HttpContext as well later on <- still the same issue with line 200 in StiRequestParamsHelper

Cheers
by MichalCh
Tue Oct 24, 2017 10:17 am
Forum: Stimulsoft Reports.NET
Topic: Generating StiNetCoreViewer from the server and sending as s
Replies: 15
Views: 10838

Generating StiNetCoreViewer from the server and sending as s

Hello, I'm trying to generate StiNetCoreViewer, parse it to string and send it back to the client. Unfortunately I'm having a small issue and I do not know what I'm doing wrong here The Index View: @using Stimulsoft.Report.NetCore; @{ ViewData["Title"] = "Home Page"; } <br /> <p>...
by MichalCh
Fri Oct 20, 2017 12:26 pm
Forum: Stimulsoft Reports.NET
Topic: Adding Licence Key to .NET Core app using NodeServices
Replies: 3
Views: 4241

Re: Adding Licence Key to .NET Core app using NodeServices

Hello HighAley,

Everything works perfectly, thank you!

Cheers
by MichalCh
Thu Oct 19, 2017 7:30 am
Forum: Stimulsoft Reports.NET
Topic: Adding Licence Key to .NET Core app using NodeServices
Replies: 3
Views: 4241

Adding Licence Key to .NET Core app using NodeServices

Hello, I'm using the .NET Core app report exporting from server side with NodeServices with implemented exportPdf.js and exportHtml.js from Demo Project. I've added in every controller and in every place this piece of code Stimulsoft.Base.StiLicense.Key = "MyKey" and even in .js files but ...
by MichalCh
Mon Oct 02, 2017 7:17 am
Forum: Stimulsoft Reports.NET
Topic: Generating one report on server side and parse to pdf/html
Replies: 5
Views: 4030

Re: Generating one report on server side and parse to pdf/ht

Hello, Thank you for your replies. As tayar said the question is about .NET Core. Aleksey, I've downloaded and studied the samples provided but unfortunately I wasn't able to find a solution for a problem described in the first post. The solutions were regenerating same report each time (and that's ...
by MichalCh
Fri Sep 22, 2017 7:49 am
Forum: Stimulsoft Reports.NET
Topic: Generating one report on server side and parse to pdf/html
Replies: 5
Views: 4030

Generating one report on server side and parse to pdf/html

Hello, I wanted to ask if there is a way to generate firstly a report (which takes long to generate) and then just parse it to different formats such as html/pdf/excel etc? (On the server side only) The idea is to not regenerate same report each time the user request just another type for the same e...