Ends in:
7 DAYS
12 HRS
29 MIN
23 SEC
Ends in:
7 D
12 H
29 M
23 S

Activities of "liangshiwei"

Hi,

You can try to generate a new credential https://abp.io/docs/latest/solution-templates/layered-web-application/deployment/openiddict-deployment#signing-and-encryption-certificate

Generating a Signing Certificate

In the production environment, you need to use a production signing certificate. ABP Framework sets up signing and encryption certificates in your application and expects an openiddict.pfx file in your application.

This certificate is already generated by ABP CLI, so most of the time you don't need to generate it yourself. However, if you need to generate a certificate, you can use the following command:

dotnet dev-certs https -v -ep openiddict.pfx -p ace85f4f-9e64-48a5-8d8e-9e630f44c944

ace85f4f-9e64-48a5-8d8e-9e630f44c944 is the password of the certificate, you can change it to any password you want.

It is recommended to use two RSA certificates, distinct from the certificate(s) used for HTTPS: one for encryption, one for signing.

For more information, please refer to: https://documentation.openiddict.com/configuration/encryption-and-signing-credentials.html#registering-a-certificate-recommended-for-production-ready-scenarios

HI,

I can't find any Http failure response for [URL]: 0 Unknown Error error message in the log file

Hi,

authenticator is a part feature of Account pro, you just need to upgrade your ABP version https://abp.io/docs/latest/modules/identity/two-factor-authentication#verification-providers

Hi,

There is no current tenant during the application Initialize process. I think you need to use a configuration file like appsettings.json to define the current tenant.

if you need to use the identityuser/roles etc.. and its endpoints in this project, you need to keep it, as I see, you don't need it (You need to evaluate carefully).

So is it necessary to have tables for them like following.

yes, it's. otherwise, you need to delete the identity module too.

According to the project given by me to you I want localization, Caching, Exception Handling So which are required and dependent packages for them. Because its taking too much time to solve one issue there is no fixed documentation which provide dependencies of other packages.

Hi, usually the documentation will mention the required packages:

  • https://abp.io/docs/latest/framework/fundamentals/localization
  • https://abp.io/docs/latest/framework/fundamentals/caching
  • https://abp.io/docs/latest/framework/fundamentals/exception-handling

Exception handing is a part feature of Volo.Abp.AspNetCore.Mvc package

Hi,

my email is shiwei.liang@volosoft.com

Hi,

I can't reproduce the problem.

ObjectExtensionManager.Instance.Modules()
  .ConfigureIdentity(identity =>
  {
      identity.ConfigureUser(user =>
      {
          user.AddOrUpdateProperty<string>( //property type: string
              "SocialSecurityNumber", //property name
              property =>
              {
                  property.Attributes.Add(new RequiredAttribute());
                  property.Attributes.Add(new StringLengthAttribute(64) {MinimumLength = 4});

              }
          );

          user.AddOrUpdateProperty<string>("Test");
          user.AddOrUpdateProperty<string>("Test2");
          user.AddOrUpdateProperty<string>("Test3");
          user.AddOrUpdateProperty<string>("Test4");
          user.AddOrUpdateProperty<string>("Test5");
          user.AddOrUpdateProperty<string>("Test6");
      });
  });

What is the logic within abp-extensible-form to decide the input control rendered on UI?

Here is the source code

https://github.com/abpframework/abp/blob/rel-8.0/npm/ng-packs/packages/components/extensible/src/lib/components/extensible-form/extensible-form.component.ts

Hi,

could you please share the all application logs? thanks.

Hi,

Can you explain more clearly that the override controller you mentioned is only intended to set infor to the cache so that the next call request will use the infor in the cache, right?

Yes, this is the response cache, the next call will return the last response cache directly.

I would appreciate it if you could give me specific instructions on improving the [application-configuration] and [application-localization] APIs. because I am worried that the override will cause missing information in case ABP updates that API.

I understand that, it's possible.

Actually I think you don't have to care about the performance because redundant calls don't cause performance problems; the endpoint uses a distributed cache inside

Showing 191 to 200 of 6127 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06