Base solution for your next web application

Activities of "luizluan"

I need to start the quartz when I start the web site, I have two jobs one of them runs once a day and the other one every 6 hours.

The method that calls the Job is in an IDomainService, even if I take it from there I still need to resolve the dependencies.

public class QuartzDomainManager : IQuartzDomainManager
    {
        private readonly IQuartzScheduleJobManager _jobManager;
        private readonly IAbpQuartzConfiguration _quartzConfiguration;

        public QuartzDomainManager(IQuartzScheduleJobManager jobManager, IAbpQuartzConfiguration quartzConfiguration)
        {
            _jobManager = jobManager;
            _quartzConfiguration = quartzConfiguration;
        }
}

My test team found this bug by accident, someone picked up a laptop that was stored and had a battery problem and tried to access the system.

My site uses digital certificate. When the user's computer time or date is incorrect, the system does not log in, so far so good, the problem is that sometimes the login works, most system functionality fails, and some queries bring other tenants' data. Is there any way to solve this easy. Or I will have to go by the hard way that would check the date of the client in javascript and compare with that of the server.

:mrgreen:

For legal reasons I must provide a backup file for the client with .bak extension. The problem is that my database has data from all clients and has no way of providing the backup of everyone.

Is there a way to make a backup with the tenant data and schema in another database?

I would appreciate it if anyone could help me. :D

Question

Try to add SignalR and get this error

Component Abp.Web.Configuration.AbpWebModuleConfiguration could not be registered. There is already a component with that name. Did you want to modify the existing component instead? If not, make sure you specify a unique name.

Someone can help me?

I need to set a custom time for a session, the user can edit this time after this the system auto logoff. This is possible?

I want this time to be idle after the downtime the session expires .

I have a problem , I have a dedicated server with multiple sites using the framework, two of these sites are the same customer , that customer has complained that the login to a website the other automatically logs out . How can I get around this ?

Is there any way to change the session , there is something I can be doing wrong is some IIS configuration?

Question

I need to open a blank page and insert html in it. The problem is that when I use the window.open () function that should open a blank page , it returns to the site's domain . How can I open a blank page without the template . I need that blank page to insert html in it to print a custom report .

Question

I need to make a report and display it on a page in pdf , could give me a suggestion on the best way to do this .

I 'm trying to use Rotational Pdf but she works with action views .

Showing 1 to 8 of 8 entries