Activities of "jfistelmann"

May it be that abp install-libs was not executed in the deployment process?

Hi,

first thing to notice: dooes the module really depend on something which involves the commercial license? if not -> resolve that.

if it does depend on commercial license:

the commercial license part is inside the appsettings.secrets.json. just open the solution in vs code (for example) and search for "AbpLicenseCode"

This is the thing you need to have set individually for each of your customers. In the example above, we have that several times. You may want to work with things like a common.props or Directory.Build.props file to reduce the amount of files needed to change and you may also want to exclude that file from change tracking.

Hey, the logic for that comes from the leptonx package which source you can download via abp suite.

I would assume that the packages are not up to date. Ensure that your package.json looks something like this:

{
  "version": "1.0.0",
  "name": "my-app",
  "private": true,
  "dependencies": {
    "@volo/abp.aspnetcore.mvc.ui.theme.leptonx": "~2.3.2",
    "@volo/aspnetcore.components.server.leptonxtheme": "~2.3.2",
    "@volo/cms-kit-pro.admin": "~7.3.2",
    "@volo/account": "~7.3.2",
    "@volo/language-management": "~7.3.2"
  }
}

If you changed something, run abp install-libs. after that, everything should be normal again.

Let me know I guessed correctly and if the solution helped :)

Kind regards Jack

Hey,

what is it exactly what you're trying to do here?

You wrote that you're using Blazor Server, but the code is MVC. Are you building a Widget?

If so, can you share the complete code that is related to that Widget along with the code on how it is invoked?

The first thing that seems strange to me (in case we're talking about a widget here) is the @page directive - which a Widget does not need.

Also: What exactly is null (Exception details)?

Happy to hear that you solved it :)

in order to change the UI you need to change this here, coming from the Volo.Abp.Identity.Pro Module:

You can not use ViewComponents in Blazor.

You would need to either implement a Blazor component for that or provide a cshtml file (like it's done here)

Sure, I'll close and refund.

here are samples: https://github.com/abpframework/abp-samples/tree/master/DomainTenantResolver

Data not coming was expected. I was hoping for an exception though. So, if I interpret this correctly:

Your blob name is correct, else it could not get it. But for some reason the stream is not returning any useful data. Must have something gone wrong with the upload I think. If this is a one-time-issue, is re-uploading a possible solution for you?

If so, maybe add some validation code that after an upload you try to get the stream -> if it's null like in this specific case, throw an exception to communicate that something has gone wrong

Try to do it like described here:

https://blog.antosubash.com/posts/abp-extend-tenant-with-custom-host (the blog post that's behind the thing I shared before).

In addition:

You do not need to create a scope, you can just use contexts ServiceProvider.

Do not nest so deep, use early exits to reduce nestings and increase readability.

if (string.isNullOrEmpty(host)
{
    return;
}
Showing 41 to 50 of 147 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on October 30, 2025, 06:33