can you share the HTTP Request/Response body
Hi,
you may need to clear the Redis cache.
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/