Activities of "liangshiwei"

This is a CORS problem, maybe you didn't configure it correctly.

builder.Services.AddCors(options =>
{
    options.AddPolicy(name: "MyPolicy",
        policy =>
        {
            policy.WithOrigins("http://example.com",
                                "http://www.contoso.com")
                            .AllowAnyHeader()
                            .AllowAnyMethod()
                            .AllowCredentials();
        });
});
app.UseRouting();

app.UseCors("MyPolicy");

You just need to send HTTP requests to the server from angular.

there is no errors just error console

is there any logs about this request? if not, i guess this request is not actually sent

i don't think so, abp use the standard database library.

btw, if you share a minimum reproducible project with me. i will check it.

See https://www.connectionstrings.com/

Hi,

we have a video ABP Community Talks 2022.1 — Microservice Development: https://www.youtube.com/watch?v=TpyROlTBc50

Hi,

you need to add module dependency

[DependsOn(typeof(AbpBlobStoringModule),)]
public class YourApplicationModule : AbpModule

Hi,

could you share the server full error logs?

you can remove MultipleActiveResultSets

Answer

Similar issues https://github.com/abpframework/abp/issues/19632#issuecomment-2311275722

Showing 1281 to 1290 of 6693 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.8.0-preview. Updated on September 21, 2026, 06:18
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.