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

Activities of "ryancyq"

Hi, there is another part of Hangfire configuration in Web.Host.Startup.

Do you have Hangfire database connection configured?

See https://github.com/aspnetzero/aspnet-zero-core/blob/9b2476de10667455de1d4f416f552797f6954a3d/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Host/Startup/Startup.cs#L117-L124

Hi, @bobingham, currently Two Factor Logins are show/hidden behind the setting for tenant/host settings only.

See https://github.com/aspnetzero/aspnet-zero-core/blob/2f8f00696ed4c0f14ed57701706df46ed8a14350/angular/src/app/admin/settings/tenant-settings.component.html#L196-L227

By default, Two factor logins section is always shown whereas the enable/disable button is display based on the setting value.

See https://github.com/aspnetzero/aspnet-zero-core/blob/4eeed7b108cbf2c68254baff14619a12f2be9649/angular/src/app/shared/layout/profile/my-settings-modal.component.html#L66-L89

I think we should align the two factor login settings in these views. Thanks for reporting.

Hi, if your CPQ application supports OpenId authentication, you can sign in ANZ application with CPQ application acts as the external authencation provider.

For OpenId configuration, see https://docs.aspnetzero.com/documents/aspnet-core-angular/latest/Features-Angular-Token-Based-Authentication

Hi, the documents have been re-structure recently. The new link for twilio is at

https://docs.aspnetzero.com/documents/aspnet-core-angular/latest/Features-Angular-Two-Factor-Authentication#twilio-integration

https://docs.aspnetzero.com/documents/aspnet-core-mvc/latest/Features-Mvc-Core-Two-Factor-Authentication#twilio-integration

Hi, Thanks for reporting. We will fix this.

Hi, is this generated by RAD tool?

if not, please share the related code to display the view

Hi, Host login page for Web.Host project was only added after 6.8

v6.8 https://docs.aspnetzero.com/documents/aspnet-core-angular/v6.8.0/Getting-Started-Angular#run-api-host

v6.7 https://docs.aspnetzero.com/documents/aspnet-core-angular/v6.7.0/Getting-Started-Angular#run-api-host

Hi, did you use any custom status code page or exception handling mentioned (excep ExceptionFilter) in https://docs.microsoft.com/en-us/aspnet/core/fundamentals/error-handling ?

There might be problem configuring the mvc to always show non html response.

It is due to Api and Mvc controllers are the same type of controller in asp .net core.

Wrapping all unexpected exception for mvc controllers to show custom error page might be good for the ux. However it might also wrap the api response when unexpected excpetion is thrown in api controller

Hi, were you trying to run xxx.xxx.Web.Host project of net core + angular version?

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

Hi, you can try one of the following approaches

  1. Extend your app service to inject a separate domain manager to handle part of the feature functionalities. So that you dont need to call the app service that requires the entire feature.

  2. Create a separate app service that can perform less functionalities than the app service with the feature. E.g UserAppService and CommonLookUpAppService in ANZ

https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Application/Authorization/Users/UserAppService.cs

https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Application/Common/CommonLookupAppService.cs

Showing 251 to 260 of 573 entries