Base solution for your next web application

Activities of "drenton"

HI,

I upgraded my project from 8.1 to 8.2. After the upgrade, the swagger generates different result for Timespan.

Before it generated Nullable Timespan like below for ListDto. this.startTime = data["startTime"]; this.endTime = data["endTime"];

now it generates it like below this.startTime = data["startTime"] ? TimeSpan.fromJS(data["startTime"]) : <any>undefined; this.endTime = data["endTime"] ? TimeSpan.fromJS(data["endTime"]) : <any>undefined; and this causes an error on below code

static fromJS(data: any): TimeSpan {
    data = typeof data === 'object' ? data : {};
    let result = new TimeSpan();
    result.init(data);
    return result;
}

Above method was not created in 8.1 and both Nullable not not Nullable timespan generates the same code.

Thanks.

I'm facing below issue and I followed the answer mentioned in link, but it doesn't seem to work.

https://support.aspnetzero.com/QA/Questions/4515#answer-5a5b48a1-5084-49fd-b14f-7466220c0d0d

I use the same SQL server with Asp.Net Zero V5 and V6 but have't seen this issue before.

Good day,

We have an ASP.NET ZERO project called WSEPortal downloaded 2018-04-25 .NET Core 2.0 Zero v5.3. With the release of Apple iOS v13_1 our web application throws an unhandled Javascript exception on iOS devices with 13_1. The unhandled exception breaks all further Javascript so the website has no functionality on those iOS v13_1 devices. We have deterined that the unhandled exception is in the core-js library which is at version 2.4.1. Our application's packages.json file uses fixed versions for all libraries that are processed by node build so the most recent versions are not being included in the node build command. I can download the latest version of ASP.NET ZERO for this project, WSEPortal, and it provides core-js v3.1.3, however I will need to merge in all of my application logic, and front end changes. Is it possible to patch core-js or is the major version change from v2 to v3 a breaking change?

Thanks

I downloaded v7.1.0(.Net Core with Angular). I followed the steps required then I could open swagger API page without any issues. but when I naviagte to localhost:4200 on chrome, the circle(freeze.ui) is running over and over again. this does not happen on IE and Firefox. My colleague is also seeing the same issue. and this is our 3th Asp.Net Zero project(.Net core with angular).

Hi,

I'm working on 5.3 Asp.Net Zero Core with Angular version.

I'm trying to use rangeslider and it works well on desktop browser but on mobile browser. I cannot drag on mobile browser. However, if I commment out below code in root.module.ts file, the dragging works as it does on other projects.

{ provide: APP_INITIALIZER, useFactory: appInitializerFactory, deps: [Injector, PlatformLocation], multi: true },

I guess somewhere in appInitializerFactory method, it crashes, but I cannot figure out.

Can you help me out with this?

Thanks.

ASP.NET Zero V 5.3

I need to change MaxUserNameLength for UserName from 32 to 128.

So I downloaded ABP boilerplate v3.7.2 and change the value in AbpUserBase.cs but as Abp.Zero.Common is referenced by many other projects. I had to update those projects too. so I did except this Abp.AspNetZeroCore.

I could find most projects within ABP boileplrate but, Abp.AspNetZeroCore << I could not find.

Where can I download that project?

Thanks.

I'm using Zero v5.3.0 [.Net core and Angular version]

Part of action menus in child table are not shown. Regretfully, there is no demo table which uses child table, so I cannot say it's from me or not.

but the same code used to work on ZERO v4.5.0

[EDIT] I found that v5.3.0 uses "normalizePosition"

Hi,

I'm using asp.net zero V4.5 with angular.

I face the login issue with IE. after I enter ID and Password, it comes back to log in page without any error message.(no error message in logs.txt too)

The site works well with Chrome, Edge and FF. it only happens in IE.

After I deleting cookies server times, I could manage to log in, but if I retry to login after closing the browser, the same thing happens.

Developer tools\network in IE it calls "GetExternalAuthenticationProviders" which is not called in Chrome, Edge and FF.

Hi,

I know that this problem is not related to ASP.NET Zero, but I hope someone could help me out with this.

With ASP.NET MVC version, recurring jobs run even after the site is not used for a while but with .Net core, recurring jobs are not fired if the site is not used for a while.

I changed idle time to 0, start mode to "Always running" and Start Automatically to "True" as I did to ASP.NET MVC version.

Anyone solved this issue?

Hi,

Below codes runs under Hangfire task scheduler. it runs without an exception while someone is using the site, but if no one uses the site for a while, it throws an exception "Cannot access a disposed object. Object name: 'UserManagerProxy"

var isRankingPermissionGranted = await _permissionChecker.IsGrantedAsync(AppPermissions.Pages_Vehicles_Reporting_FinanceAndInsurance_Ranking);

I tried below code too but it does't work either.

using (_abpSession.Use(ui.TenantId, ui.UserId))
{
    var isRankingPermissionGranted = 
    await _permissionChecker.IsGrantedAsync(AppPermissions.Pages_Vehicles_Reporting_FinanceAndInsurance_Ranking);
}
Showing 1 to 10 of 16 entries