Activities of "maliming"

hi

we are got getting the OrganizationUnitID which we have in AbpUsers table, how to handle this?

What do you mean? I don't understand.

Thanks.

Answer

hi

Are there any error messages in the Browser console?

Thanks.

hi

Please try to use AddStaticHttpClientProxies in your .HttpApi.Client project,

context.Services.AddStaticHttpClientProxies(
    typeof(AbpSolution1ApplicationContractsModule).Assembly,
    RemoteServiceName
);

.HttpApi.Client> abp generate-proxy -t csharp -m app --url https://localhost:44332 --without-contracts

https://localhost:44332 is your api website url.

Thanks

hi

I will check this case.

Thanks.

Answer

hi

The ABP suite is not designed for API calls. All the input parameters are explained in the UI.

If you want to use the API, you can check the api http request in the Chrome Network Panel.

Thanks

hi

You don't need to add a wildcard domain to the database; you only need add it to WildcardDomainsFormat

Thanks

PreConfigure<AbpOpenIddictWildcardDomainOptions>(options =>
{
    options.EnableWildcardDomainSupport = true;
    options.WildcardDomainsFormat.Add("https://{0}.our.app");
});

hi

context.Services.ConfigureApplicationCookie(options =>
{
    var previousOnSignedIn = options.Events.OnSignedIn;
    options.Events.OnSignedIn = async cookieSignedInContext =>
    {
        await previousOnSignedIn(cookieSignedInContext);
        
        // Your code
        
    };

    var previousOnSigningOut = options.Events.OnSigningOut;
    options.Events.OnSigningOut = async cookieSigningOutContext =>
    {
        await previousOnSigningOut(cookieSigningOutContext);

        // Your code
    };
});

Great

hi

{} and null is no problem.

But {{}} is wrong.

Do you remember why {{}} is write to database? Can you share some code?

Thanks.

Great : )

Showing 701 to 710 of 11567 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.1.0-preview. Updated on December 25, 2025, 06:16
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.