Search found 11 matches

by anjung
Thu Sep 01, 2022 2:44 pm
Forum: Stimulsoft Reports.WEB
Topic: "The license key is not valid" on 6.0-alpine
Replies: 9
Views: 2121

Re: "The license key is not valid" on 6.0-alpine

with the gdiplus dependency gone, this is a fully working base image for stimulsoft netcore FROM mcr.microsoft.com/dotnet/aspnet:6.0-alpine AS base ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false COPY ./fonts /usr/share/fonts RUN apk --no-cache add fontconfig tzdata icu-libs icu-data-full &&...
by anjung
Sun Jun 12, 2022 5:54 pm
Forum: Stimulsoft Reports.WEB
Topic: "The license key is not valid" on 6.0-alpine
Replies: 9
Views: 2121

"The license key is not valid" on 6.0-alpine

Trying to start alpine docker images with Stimulsoft.Reports.Web.NetCore 2022.2.6 StiLicense.Key = "..." fails on 6.0-alpine but works with 6.0-jammy What kind of crypto magic are you using in there^^ this may be openssl related == Docker File Base == FROM mcr.microsoft.com/dotnet/aspnet:6...
by anjung
Tue Mar 01, 2022 8:51 am
Forum: Stimulsoft Reports.WEB
Topic: Issue running stimulsoft in Linux with .net 6
Replies: 11
Views: 3403

Re: Issue running stimulsoft in Linux with .net 6

Fixed in .NET 6 AspNetCore WebApi with

AppContext.SetSwitch("System.Drawing.EnableUnixSupport",true);

the runtimeconfig.json did not work for us
by anjung
Wed Jan 27, 2021 11:50 am
Forum: Stimulsoft Reports.ANGULAR
Topic: Angular Designer UpdateImagesArray Cache
Replies: 7
Views: 10540

Re: Angular Designer UpdateImagesArray Cache

Hi,

No problem the Razor variant works for now as it should.
One of the Kestrel exceptions seems to be caused by stimulsoft accessing request session - when sessions support is not enabled.
ObjectCache should not require session?
by anjung
Sat Jan 23, 2021 10:28 pm
Forum: Stimulsoft Reports.ANGULAR
Topic: Angular Designer UpdateImagesArray Cache
Replies: 7
Views: 10540

Re: Angular Designer UpdateImagesArray Cache

https://github.com/coronabytes/stimulsoft It uses MemoryCache for DB Abstraction There may be a better way to do the resizing? Pls look over the AngularController if there comes anything to mind what could cause aspnetcore to block - its taken from your examples hoever When resizing the angular var...
by anjung
Tue Jan 19, 2021 3:02 am
Forum: Stimulsoft Reports.ANGULAR
Topic: Angular Designer UpdateImagesArray Cache
Replies: 7
Views: 10540

Re: Angular Designer UpdateImagesArray Cache

Will do, however this will take a few days probably. I'd suspect some sort of thread resource blocking within the aspnetcore requests. the first designer event is instant and the following block for 30s or so the c# code for razor and angular is nearly the same angular is fully async implemneted and...
by anjung
Sun Jan 17, 2021 4:17 pm
Forum: Stimulsoft Reports.ANGULAR
Topic: Angular Designer UpdateImagesArray Cache
Replies: 7
Views: 10540

Angular Designer UpdateImagesArray Cache

Hi, On initital load 2.7MB base64 encoded images are transfered THREE TIMES and once every designer resize (to make it responsive we had to bind [height] to container height) Isnt' there a better way to do this like copy to /assets or cache them locally? loading times are quite heavy UPDATE: Had to ...
by anjung
Sun Nov 29, 2020 8:48 pm
Forum: Stimulsoft Reports.WEB
Topic: .NET 5 CacheHelper BinaryFormatter
Replies: 4
Views: 1758

Re: .NET 5 CacheHelper BinaryFormatter

Hi, please do as it seems the EnableUnsafeBinaryFormatterSerialization is not working as it should. (or Binaryformatter is now broken) There is no longer an exception, but rendering small previews render alot slower and WITHOUT DATA and larger previews just crash. this was all working in .NET Core 3...
by anjung
Thu Nov 26, 2020 10:20 pm
Forum: Stimulsoft Reports.WEB
Topic: .NET 5 CacheHelper BinaryFormatter
Replies: 4
Views: 1758

Re: .NET 5 CacheHelper BinaryFormatter

"Temporary" workaround - still please consider replacing it - and no json.net cannot replace it wirh your current "object madness" :twisted: https://github.com/nhibernate/nhibernate-core/issues/2603 <PropertyGroup> <TargetFramework>net5.0</TargetFramework> <!-- Warning: Setting t...
by anjung
Thu Nov 26, 2020 9:53 pm
Forum: Stimulsoft Reports.WEB
Topic: .NET 5 CacheHelper BinaryFormatter
Replies: 4
Views: 1758

.NET 5 CacheHelper BinaryFormatter

So after the UTF-7 error is fixed it seems you are using the binaryformatter in GetCacheDataFromObject and GetObjectFromCacheData which unfortunatly has also been disabled in .NET 5 System.NotSupportedException: 'BinaryFormatter serialization and deserialization are disabled within this application....