ERR] An unhandled exception has occurred while executing the request.
Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Conflicting method/path combination "GET api/app/nordigens" for actions - Life.Controllers.Nordigens.NordigenController.GetListAsync (Life.HttpApi),Life.Controllers.Nordigens.NordigenController.BanksAsync (Life.HttpApi). Actions require a unique method/path combination for Swagger/OpenAPI 3.0. Use ConflictingActionsResolver as a workaround
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GenerateOperations(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository)
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GeneratePaths(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository)
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GetSwagger(String documentName, String host, String basePath)
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider)
at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
at IdentityServer4.Hosting.IdentityServerMiddleware.Invoke(HttpContext context, IEndpointRouter router, IUserSession ...
Ive followed the same process to add a api endpoint from before and its not working. can you point me at the document to help me with this please?
hi i want to encrypt certain columns in the database and wanted to check with you first to see if this is possible
Hi I need to turn off the forcing of https. I want the load balancer to strip the https off and then go to the abp code and talk just http.
I want to use the system environmental variables.
I want to use them for the DBMigrator and the Web application. why I set the database parameters as system parameters for that system
Please can you tell me how I can set these?
I want to use this.
public string GetConnectionString()
{var combuilder = new MySqlConnector.MySqlConnectionStringBuilder();
combuilder.Server = Environment.GetEnvironmentVariable("DATABASE_HOSTNAME");
combuilder.UserID = Environment.GetEnvironmentVariable("DATABASE_USERNAME");
combuilder.Password = Environment.GetEnvironmentVariable("DATABASE_PASSWORD");
combuilder.Database = Environment.GetEnvironmentVariable("DATABASE_DATABASE");
return combuilder.ToString();
}
then use this in both the DBMigrator, and the web app.
on creating or updating with ABP Suite I get this all the time in the code.
%%np-edit-modal-js-open-args%%
using ABP Suite, how is it possible to change what is set in ABP suite without redoing all the work that has been put in to the controllers etc?
Hi,
I would like users to just login to the login form. the process then workout that tenant the user belongs to and set the tenant correctly.
I wish not to have them select the tenant or have a URL that denotes the tenant.
Ive made a Folder called Tink and make a index.html and index.cshtml. Im passing parameters from the url with queryString.
I want to now add these query parameters to a database, then want to call an external service to get data based on them queryString parameters and store that in another Entity.
I would like to know where to write this code , how best to get DBContext and how to insert the data in to a entity.