Activities of "maliming"

hi

I have no idea about this. You can get the pfx file from a virtual file instead of a folder.

https://abp.io/docs/latest/framework/infrastructure/virtual-file-system

hi

Does this code execute in your current environment(if (!hostingEnvironment.IsDevelopment()))?

hi

Try to clear Redis.

If still not working please share the logs of authserver.

Thanks.

hi

Can you share your project source code?

I will try to deploy it to the IIS virtual app directory and then fix the error I see.

Thanks.

liming.ma@volosoft.com

hi

Please set the log level to debug and reproduce the error, then share the logs.

Thanks

liming.ma@volosoft.com

public class Program
{
    public async static Task<int> Main(string[] args)
    {
        Log.Logger = new LoggerConfiguration()
            .MinimumLevel.Debug()
            .MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
            .Enrich.FromLogContext()
            .WriteTo.Async(c => c.File("Logs/logs.txt"))
            .WriteTo.Async(c => c.Console())
            .CreateLogger();

Answer

hi

The most important where and how will we add PayU credentials for MVC tiered web application

Add typeof(AbpPaymentPayuDomainModule) Volo.Payment.Payu.Domain to your api.host project Add typeof(AbpPaymentPayuWebModule) Volo.Payment.Payu.Web to your web project

https://abp.io/packages?moduleName=Volo.Payment

Add JSON below to your appsettings.json of api.host and web projects.


"Payment": {
    "Payu": {
      "Merchant": "OPU_TEST",
      "Signature": "SECRET_KEY",
      "LanguageCode": "en",
      "CurrencyCode": "USD",
      "VatRate": "0",
      "PriceType": "GROSS",
      "Shipping": "0",
      "Installment": "1",
      "TestOrder": "1",
      "Debug": "1",
      "Recommended": "true",
      "ExtraInfos": [
        "PAYU accepts Visa and MasterCard."
      ],
      "PrePaymentCheckoutButtonStyle": "vst-btn-continuetocheckout"
    }
  }

You can give it a try and feedback if you have any problem.

Thanks.

hi

You can update your OpenIddictDataSeedContributor to add custom grant type to the application/client.

hi

Can you try the dotnet restore and dotnet build commands?

hi

I had confirmed that this is a problem with the customer code.

https://abp.io/support/questions/7501/Problems-with-integration-of-Entra-External-ID#answer-3a13ef86-3957-c408-5840-b3c46c9d87a5

Please add this code to your solution

context.Services.AddOptions<OpenIdConnectOptions>(OpenIdConnectDefaults.AuthenticationScheme)
.PostConfigure(options =>
{
    options.SignInScheme = IdentityConstants.ExternalScheme;
});

hi

I want to notify to the client on every new entry is added into the system for specific entity only.

You can add an event handler to listen the EntityCreatedEventData

EntityCreatedEventData<T> is published just after an entity was successfully created.

https://abp.io/docs/latest/framework/infrastructure/event-bus/local#pre-built-events

Showing 3341 to 3350 of 10651 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20