okay
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