Activities of "EngincanV"

Hi, in .NET you can apply HMAC validation to all your API endpoints by implementing a custom middleware. This ensures that all incoming requests are validated for authenticity and integrity using a shared secret key, for example.

However, we don't provide such a middleware by default and you need to create it yourself. But, after you create your middleware, if you want you can use our own String Encryption system.

Regards.

so i do not need to change this line: installdir_update="${installdir}/Update.exe"

Sorry, for the inconvenience. ${installdir} should be changed for Mac. And also, instead of update.exe, you should rename it as update.

Hi,

Thank for your suggestion.

Is there any way to change the name of javascript function when it is dynamically generated at runtime. For example: In report module I have a ReportItemAppService in namespace MZH.MHIBS.Report with GetList method. I add this module into AMLReportService after running, the javascript code will be generated like this:

abp.utils.createNamespace(window, 'mZH.mHIBS.report.reportItems.reportItem'); 
 
mZH.mHIBS.report.reportItems.reportItem.getList = function(options, permission, ajaxParams) { 
  return abp.ajax($.extend(true, { 
    url: abp.appPath + 'api/aml-report-service/report-item' + abp.utils.buildQueryString(...) + '', 
    type: 'GET' 
  }, ajaxParams)); 
}; 

Now, if I use this module in CICReportService, the javascript code will be generated the same. I can change the API api/aml-report-service/report-item and api/cic-report-service/report-item but the name of javascript function still the same. How to change it.

Unfortunately, there is no support for that, and the dynamic JS API client proxy is generated by method naming convention.

Regards.

Hi, when you use module entity extensions, ABP renders the ExtensionProperties component (https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlazoriseUI/Components/ObjectExtending/ExtensionProperties.razor) on the create/edit models.

So, my understanding was that by setting the data type of my property to as shown below, it should result in a text area field where I can type multiple lines of text, but that is not the case.

You are right that when you use the DataType.MultilineText, it should have rendered a textarea (MemoEdit component in Blazorise), but it seems currently it's not supported (see for current data-type equivalent components: https://github.com/abpframework/abp/blob/24b3bf2b79f5a973948a5f6d4cfcae891e216f01/framework/src/Volo.Abp.BlazoriseUI/BlazoriseUiObjectExtensionPropertyInfoExtensions.cs#L231-L249).

I've created an issue for that: https://github.com/abpframework/abp/issues/22935

Regards.

Hi, lpx-settings component comes from @volosoft/ngx-lepton-x. You can use the following command to add the related package with the source code:

abp add-package @volosoft/ngx-lepton-x --with-source-code

Then, you can find the settings.component.ts and the relevant HTML file and replace the component as you wish.

Regards.

Answer

Hi, do you clear your NuGet package each week? Because ABP Studio uses the Volo.Abp.Studio.Extensions.StandardSolutionTemplates NuGet package for the solution templates, and it seems it could not be found in the NuGet cache, this is the reason for the error:

19:13:33.138 Warning "Volo.Abp.Studio.Extensions.StandardSolutionTemplates" extension not found in the NuGet cache. Directory: "C:\Users\steve.nuget\packages\volo.abp.studio.extensions.standardsolutiontemplates\0.9.26\lib\net9.0"

Can you confirm if is there any folder named volo.abp.studio.extensions.standardsolutiontemplates under the directory? If you can see the folder, please delete it and then close & re-open ABP Studio, so it can install the NuGet package again and your problem will be resolved. (Alternatively, if it's not important for you, then you can clear all NuGet cache with the command: dotnet nuget locals --clear all then close & run ABP Studio, so it can install the package)

Regards.

Hi, the value ::1 represents the IPv6 loopback address, which is equivalent to 127.0.0.1 in IPv4. This typically occurs when you're accessing the application locally (e.g., via localhost) during development or testing. So, if you are seeing this in development mode, then it's the expected behavior.

Hi, you're encountering this error because changing the render mode to InteractiveWebAssemblyRenderMode (with prerender: false) shifts your Blazor app to pure WebAssembly mode, which doesn't execute any server-side code at startup.

The default ABP Blazor WebApp project uses Blazor Server + WebAssembly hybrid mode (InteractiveAuto). Switching to pure WebAssembly breaks this assumption, so if you want your all application as blazor wasm, you don't need to start with a blazor web app template. It's used to mix the both approaches, and deciding per component/page.

Regards.

Hi, ABP Framework automatically sets tenantId when you directly or indirectly implement the IMultiTenant interface.

There is an EntityHelper.TrySetTenantId method (https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/EntityHelper.cs#L281-L300), which gets the current tenant id and sets it from the current scope.

ABP determines the current tenant from one of its providers (https://abp.io/docs/latest/framework/architecture/multi-tenancy#determining-the-current-tenant) and then basically sets it, so while creating an entity or filtering it it passes to the query/command.

Regards.

Hi, you can change "windows" to "osx" or "osx-intel" and use the same script: url="https://abp.io/api/abp-studio/download/r/osx/${output}"

Regards.

Showing 161 to 170 of 1358 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41