Base solution for your next web application

Activities of "SRTMDEV"

Hi, any update on this context?

Hi, i already try with applying to AppService Implementation, however it still not working

Thanks

Product Version: 8.6.0 Product Type: anuglar Prodcut Framework: .net core

What I am trying to achieve? I should be able to apply any origin CORS policy to some AppServiceController.

I create another CORS policy and trying to apply it to AppServiceController in** CompanyName.Application** project with Attribute [EnableCors("AllowAll")] however its not working. When i try same Attribute on HomeController on CompanyNameWeb.Host project it working.

What could be issue with AppServiceController? How can i achive my goal?

Below are the CORS policy

Below way i temporary achieve my goal,

Thanks.

Hi, ANZ Team,

I would like to create api to get list of all the jobs with current tenant login where job should only in list if that run for the current tenant . I want to fetch that list in angular side via api and display the status of job and job History. I am able to add tenantId in job by setjobparameter in hangfire with filtercontext.

How can I achive this goal with Hangfire or BackgroundJobManager? Any suggestion? Or any example with tenant filtered background Job.

Thanks.

Hi,

Can we get all the third party libraries used in aspnet-core like you provide for angular?

https://docs.aspnetzero.com/en/aspnet-core-angular/latest/Infrastructure-Angular-Used-Libraries-Frameworks

Thanks

Hello,

It will be good for everyone if ASPNETZERO provide the third party licence notice, which also need to updated from yourside wheneever new libraries added/removed and the last update date.

This is aspnetcore provide the third party notice, https://github.com/dotnet/aspnetcore/blob/master/THIRD-PARTY-NOTICES.txt

Thanks

Hello,

We would like to have third party libraries licence notice or discalaimer. Are you providing somwhere the third party llicence disclaimer?

Any suggestion how we can go for third party licence notice?

Thanks,

Hello ASPNETZERO,

We are looking for suggestion related to reporting library which provide below reporting component/feature and is fully compaitable with aspnetzero core-angular.

Features/Components

  • Tabular
  • Charts
  • Gauge
  • Maps
  • Drill down capability
  • Export Capabilities (PDF, Word, Excel)

Looking forward to hear back from you.

Hello,

My Query is about Host direct access/login to the tenant via any user,

Tenant should be able to lock and unlock super admin direct access from Host and only specified tenant user can used for direct access from the Host.

Ex. Host : Super admin Tenant: A Tenant A user : A-admin, A-mark

If tenant A allow Super admin access for direct access via user A-mark then super admin should only be able to login via A-mark for that tenant.

Any suggestion? Any other solution for enable and disable super admin access from the every tenant setting?

Thanks.

Hello maliming ,

Thanks for your response. I am able to check tenant if not available and redirect if not available but i am getting error in angular side when tenant is not available. see below screenshot.

It may be because of if tenant not available system not return any json and in frontend side system parsing the result in XHR request. I am able to solve it by try catch. Check below code and Please suggest if any better way to solve it.

    xhr.onreadystatechange = () => {
        if (xhr.readyState === XMLHttpRequest.DONE) {
            if (xhr.status === 200) {
                let result;
                try {
                    result=JSON.parse(xhr.responseText);
                } catch (e) {
                    window.location.href = xhr.responseURL;
                }
                
                success(result);
            }else if (xhr.status !== 0) {
                alert(abp.localization.localize('InternalServerError', 'AbpWeb'));
            }
        }
    };
   

Any other suggestion to sove it?

Showing 91 to 100 of 106 entries