Thanks !
Posts made by Zaliro
-
JsReport.Local - Configure LocalWebServerReportingService._reportingService.HttpClientTimeout ?
Hi,
HttpClientTimeout of _reportingService instance in LocalWebServerReportingService is not exposed.
Could you add ability to configure it ?Thanks in advance.
-
RE: JsReport.Local - Configure LocalWebServerReportingService.StartTimeout ?
Nevermind.
If someone need it :
Have a good day.
-
JsReport.Local - Configure LocalWebServerReportingService.StartTimeout ?
Hi it's me again,
Is it possible to configure : https://github.com/jsreport/jsreport-dotnet-local/blob/master/jsreport.Local/Internal/LocalWebServerReportingService.cs#L41 ?
Thanks in advance,
Have a good day ! -
RE: JsReport.Local - Extensions not loaded
@jan_blaha A big thanks for your time !
-
RE: JsReport.Local - Extensions not loaded
@jan_blaha If u can take a look, it's critical for us and outcome of this will drive our choice of buying an entreprise license or not
-
RE: Merging of .docx file with the given variables and output will be in PDF.
Hi man,
Docx recipe now part of jsreport. It can product docx reports based on the docx templates.
https://jsreport.net/learn/docxAdditionally, there is the custom jsreport extension that can convert docx reports into the pdf.
https://jsreport.net/learn/unoconv -
JsReport.Local - Extensions not loaded
Hi,
We are about to buy a JsReport enterprise licence but w're facing a new problem with our .NET Core WebApi and JsReport.Local... We're unable to load custom extensions, only default extensions, engines and recipes are available.
(We've cautious followed doc for installing custom extensions with JsReport.Local)Discover is activated in our jsreport.config.json and there is a package.json in our "jsreport" directory and this directory is build copied to output including "nodes_modules" dir.
jsreport.config.json: https://i.imgur.com/K4720f3.png
package.json: https://i.imgur.com/Dablfzp.png
js report (build copied) directory: https://i.imgur.com/5oOnHb6.png
nodes_modules directory: https://i.imgur.com/lWlw00J.png
ioc declaration: https://i.imgur.com/BHyH2cX.png
console output: https://i.imgur.com/vuljKxM.pngSo config is successfully loaded from "jsreport" directory but it seems no extensions are detected...
We're running out of ideas, hope someone can help us.
Thanks in advance ! -
RE: JsReport - Logger don't write in file
@jan_blaha You have save me a lot of time from understand what was going on.
So, another question. I have the same problem to get JsReport using temp directory declared in jsreport.config.json.I guess it's also when using AsUtility ?
PS : There is any plan to get logs working when using AsUtility ?
Thanks in advance,
Have a good day. -
JsReport - Logger don't write in file
Hi,
I've a .NET Core WebApp running JsReport as utility on IIS.
I have a problem with logs, JsReport don't output logs to file according to json configuration.PS : IIS app pool has every needed rights.
#region JsReport services.AddJsReport(new LocalReporting() .UseBinary(JsReportBinary.GetBinary()) .KillRunningJsReportProcesses() .Configure(cfg => cfg .AllowedLocalFilesAccess() .FileSystemStore() .BaseUrlAsWorkingDirectory()) .AsUtility() .Create()); #endregion
{ "logger": { "file": { "transport": "file", "level": "debug", "filename": "logs/jsreport.log" }, "error": { "transport": "file", "level": "debug", "filename": "./logs/jsreport-test.log" } }, "discover": true, "assets": { "allowedFiles": "**/*.*", "searchOnDiskIfNotFoundInStore": true, "rootUrlForLinks": "file:////D:/[...]/[...]/jsreport", "publicAccessEnabled": false }, "templatingEngines": { "timeout": 80000, "strategy": "http-server", "numberOfWorkers": 4 }, "chrome": { "timeout": 60000, "strategy": "chrome-pool", "numberOfWorkers": 4 }, "extensions": { "scripts": { "allowedModules": [ "bwip-js" ] } } }
I've already try with relative or full path it doesn't work too.
Any idea would be welcoming.Thanks in advance !