BoldSign®Effortlessly integrate e-signatures into your app with the BoldSign® API. Create a sandbox account!
We've been receiving the following pop up,
intermittently
on our live environment but locally it seems to be working fine.
We have a setup of 3 nodes with a loadbalancer and we've manage to make the pop up go away by switching off all the nodes and just running one on the server but that's not a long-term solution.
Please note that we are currently running .Net core 5, together with syncfusion/ej2-vue-pdfviewer": "17.4.51 npm PACKAGE and nuget:
Syncfusion.ej2.aspNet.core 19.2.0.48
Syncfusion.ej2.Pdfviewer.AspNet.Core.Windows 19.2.0.48
Can you please advise on how we can resolve this issue?
Thank you in advance.
services.AddDistributedRedisCache(options =>
{
options.Configuration = Configuration.GetConnectionString("Redis");
}); |
PdfViewerController.cs
private IDistributedCache _cache;
public PdfViewerController(IHostingEnvironment hostingEnvironment, IDistributedCache cache)
{
_hostingEnvironment = hostingEnvironment;
_cache = cache;
} |
Hi
Shamini
, thank you so much for your response, i'm happy to announce that we've manged to solve the problem by enabling 'sticky session' on loadbalancer, however, the rendering of pdf still takes 'forever' to load , it almost seems like its hanging for a while somewhere on the front end( currently using vue.js), before making the call to the service side? .Any thoughts on that maybe?