Hi
is the tenant onboarding done without login to host user?
to add extraproperties please follow below links
https://docs.abp.io/en/abp/latest/Module-Entity-Extensions https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities https://docs.abp.io/en/abp/latest/Object-Extensions#addorupdateproperty
Hello ravick@cloudassert.com,
Please do have look to this similar issue https://support.abp.io/QA/Questions/1036/How-to-limit-roles-in-identity-management
please do let me know if found helpful for you
Thank you, Anjali
Hello oshabani,
Please do have look to these links
please do let me know if find helpful for you
Thank you, Anjali
Hello,
https should be there in RemoteServices.Default.BaseUrl like - https://apihost.obinex.com.tr/
Can you please check database, whether URL's are updated or not
Check whether login is working from AuthServer / Swagger application
Check whether if there is any firewall settings, which is blocking connection between web app and authserver.
Thanks, Anjali
Hello cxp920,
I am trying to reproduce the issue at my end with your code but I am not getting that error.
I made some changes in your code as below and it works fine at my end.
await builder.AddApplicationAsync<Demo5937WebModule>(options =>
{
var env = builder.Environment;
if (env.IsDevelopment())
{
var pathSection = builder.Configuration.GetSection("PluginsFolderLocalPath");
var path = pathSection.Exists() ? pathSection.Value : null;
if (path != null)
{
options.PlugInSources.AddFolder(path, SearchOption.AllDirectories);
}
}
else
{
var configSection = builder.Configuration.GetSection("YourConfigKey"); // Replace with your actual configuration key
var configValue = configSection.Exists() ? configSection.Value : null;
if (configValue != null)
{
options.PlugInSources.AddFolder(configValue, SearchOption.AllDirectories);
}
}
});
could you please check with this code?
Please do let me know if it helps you.
Thank you, Anjali
Hi
is it possible to share the configs of project. like appsettings.json of mvc, authserver and httpi.host ?
Hello
This dialogue shows your solution is created now try to run that application by following documentation https://docs.abp.io/en/commercial/latest/startup-templates/microservice/get-started. Also do check the prerequisites to run microservice application.
Please do let me know if anything else needed.
Thank you, Anjali
Hello Spospisil,
I have done this through css only.
I have added this code in main.css
.lpx-sidebar-container .lpx-nav-menu .lpx-menu-item-link {
border-bottom: 1px solid black !important;
}
If you want to add style to particular menu item then you can give style by using its id just like below
a#MenuItem_BlazorWasm2\.Home { /* at my side this is id for home menu item*/
border-bottom: 1px solid white !important;
}
please do let me know if it helps you,
Thank you, Anjali
Hello iteabr2020,
HTTP/2's use of a single TCP connection is not typically a bottleneck; in fact, it's one of the key features designed to improve performance. HTTP/2's multiplexing capability allows multiple requests and responses to be multiplexed over a single connection, which can lead to more efficient use of that connection.
Also have look to this https://factoryhr.medium.com/http-2-the-difference-between-http-1-1-benefits-and-how-to-use-it-38094fa0e95b
Thanks, Anjali