Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "mark.montesa"

  • What is your product version? 8.2
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .net core

Hi, just found out that AddTokenValidityKeyAsync method is not saving the token on the AbpUserToken table. May I have some input on why it suddenly stop working?

Thanks.

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? 10.3
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .net core

If issue is about UI

  • After upgrading our 10.1 application to 10.3, we are getting error on angular side as the image shows.
  • Do have idea what causing the error?

Thanks

Hi,

I would like to ask, why GetCustomCss and GetTenantLogo slows down when I have multiple tabs for aspnetzero Ui(angular). When I open the UI(angular) on multiple times there are times that the page will load first before the Css and Logo for specific Tenant.

Images are actual timing of GetCustomCss and GetTenantLogo when loaded with multiple tabs.

Hi,

Weve been trying to use multitenancy but cannot determine the tenant through TENANCY_NAME from url. Were using aspnetzero 7.2. TENANCY_NAME from url should set the tenant on the login page.

Here is what we have on appconfig/appsetting. Angular: appconfig.json "remoteServiceBaseUrl": "http://{TENANCY_NAME}.domain1.com", "appBaseUrl": "http://{TENANCY_NAME}.domain.com",

Backend: appsetting.Production.json "ServerRootAddress": "http://{TENANCY_NAME}.domain1.com", "ClientRootAddress": "http://{TENANCY_NAME}.domain.com", appsetting.Staging.json "ServerRootAddress": "http://{TENANCY_NAME}.domain1.com", "ClientRootAddress": "http://{TENANCY_NAME}.domain.com",

Weve tried the solution/hack from https://support.aspnetzero.com/QA/Questions/6120 and its working. But we want the solution from your end.

Question

Hi,

I would like to ask if you can help us on how to set up domain for different tenant on aspnetzero. And how to create subdomain on azure server, for us to test the multitenancy domains.

Thanks.

Question

Hi, I just want to ask if you can help about the loader of primeng table. On azure website the loader is hiding too fast even the table is not yet populated. But on local machine using the same database connection it is not happening. Hope you can help me with this. Heres an snippet of the code:

ts file:

getTagTypes(event?: LazyLoadEvent) {
    if (this.primengTableHelper.shouldResetPaging(event)) {
        this.paginator.changePage(0);
        return;
    }

    this.primengTableHelper.showLoadingIndicator();

    this._tagTypeAppService.getTagType(
        undefined,
        this.filterText,
        this.primengTableHelper.getSorting(this.dataTable),
        this.primengTableHelper.getMaxResultCount(this.paginator, event),
        this.primengTableHelper.getSkipCount(this.paginator, event)
    ).pipe(finalize(() => this.primengTableHelper.hideLoadingIndicator() ))
    .subscribe(result => {
        this.primengTableHelper.totalRecordsCount = result.totalCount;
        this.primengTableHelper.records = result.items;
        this.primengTableHelper.hideLoadingIndicator();
    });
}
Showing 1 to 6 of 6 entries