Base solution for your next web application

Activities of "bancentral"

Hello guys, i could implement what i was looking for, in case any other user had the same requirement, i had to overwrite the main project DbContext Constructor and set the corresponding configuration by calling the database token authentication here.

Hi.

We are using a project (.Net CORE 2.2 + JQuery) and we are looking for implementing an Azure SQL Server Managed Identity, for security porpuses we would like to remove the username and password from the connectionString in the appSetting by implementing the Managed Identiy connection. Do you have any documentation to apply this to the aspnet zero project? I tried implementing Azure SQL Server Managed Identity following the Microsoft documentacion by setting up some code in the Startup.cs ConfigureServices method but this did not worked. Do you have any suggestions?

This is what we have now following some documentations:

public IServiceProvider ConfigureServices(IServiceCollection services) { var connectionString = "Server=tcp:xxxxxx.database.windows.net;Initial Catalog=xxxxxxx;"; services.AddTransient(a => { var sqlConnection = new SqlConnection(connectionString); var credential = new DefaultAzureCredential(); var token = credential.GetToken(new Azure.Core.TokenRequestContext(new[] { "https://database.windows.net/.default" })); sqlConnection.AccessToken = token.Token; return sqlConnection; });

....

Thanks in advance.

Hello,

We tried so many things, now we removed some of the changes we made, we only keep the changes on the serviceProxies where we have many endpoints that are connected to different services with different domain, now we are getting the error bellow: "Could not find localization source: AbpWeb".

Hello Guys,

My team and i are doing some changes to the Angular Client project, there are some endpoints in the ProxyService that we changed to get data from many microservices instead of get data from the base endpoint. This is perfectly working on localhost, but when we try to ng build the project, we are getting an error relationed to the "GetAllScrips". We are using the last version of ABP Framework (.NET CORE + Angular).

Thanks in advance.

Im still having the problem...

I would like to authenticate (without passing user and password) a Microservice that i have to a aspnetzero API, how can i achive this?? i could not getting this work.

Hi guys,

My team and have have the scenario bellow:

We actually have an API project with ASPNET ZERO (Principal API) and an Angular Client project that comes with the project. We have like 2 o 3 more APIS running with ASPNET Project that we are using like microservices, we want to authenticate this "microservices" with the principal API.

Do you have some documentation or RECOMENDATION to achieve this?

Thanks in advance!!!

Thanks for your fast response.

Hi,

Im implementing the Authentication Azure B2C in my project, but im wondering, how should i manage de Roles of users if im going to authenticate to an External Service where the users are in that Service and not in my database?

When i succefully authenticate on the Azure B2C, does ABP create the User in the database? How this should work?

Please i need some support in this.

Thanks in advance.

The URL you put there is no available, it says 404 Not Found

Hello, i would like to know if this licence of ASPNET ZERO cover the ABP.IO FrameWork, we are considering to use the ABP.IO to implement a whole system that will receive a (BIG) amount of request and we think that ABP.IO is our best option now.

Showing 1 to 10 of 12 entries