Base solution for your next web application

Activities of "samara081"

We have MVC with .Net Core 6. Aspnet zero 11.4

Our security team raised security issue that AbpServiceProxies/GetAll for dynamic APIs is exposed for public. and we have to make secured just for authenticated users. Is there any way to make it secured without affecting the system

Thanks

Hi,

We have deployed our solution to servers where proxy is applied on the server and all outbound traffic should go throw the proxy. The issue is all connections (email, captcha with google app verification, SMS) is refuse to use the default proxy settings of the server. and i have to go throw every component and configure the proxy as below client.ProxyClient = new MailKit.Net.Proxy.HttpProxyClient("172.21.17.7", 8080);

My question; is their any way that i can apply proxy settings globally (like startup.cs ot web.config)?

Client tools like wappalyzer can identify that we are working with aspnetboilerplate as you can see in the below image. is their any way that we hide this information?

Currently when the client send invalid post DTO, the system will throw AbpValidationException with details of the error, like missing field. how I can hide the details of the of the error? This request raised by security team.

Hi,

I am using MVC Core, 10.4Rc

How i can use the file uploader that exisits in aspnetzero online demo, it is much advanced than the one in the solution

Hi,

I am using aspnet zero V10 with MVC and .Netcore 5. I run Yarn then, npm run create-bundles in MVC project

Recently i keep getting warring invalid license id for yarn and aspnetzero

Also After generating any entity with power tool, the console always show yarn invalid license code

How i can remove this warring?

Hi,

I am using Aspnetzero MVC with .net Core 5, Aspnetzero version is (10), i also tries same senario with 10.1 Rc and 9.3.

First I have create the child entity as follwoing

Then I have Created the master entity as follwoing:

However after runging the project, the button that shows the child records is missing in the page

Did i missed any step?

Hi,

I need to do minor changes for some api response exception wrapping, from

{
  "result": null,
  "targetUrl": null,
  "success": false,
  "error": {
    "code": 0,
    "message": "Error Message",
    "details": null,
    "validationErrors": null
  },
  "unAuthorizedRequest": false,
  "__abp": true
}

to be

{
  "result": null,
  "targetUrl": null,
  "IsSuccess": false,
  "error": {
    "code": 0,
    "message": "Error Message",  
  },
  "__abp": true
}

Is their any way to do it?

Hi,

Is there any way to trace all dynamic API requests and response with paramters in to log files? I am using MVC Core latest version.

Regards

Hi,

Currentlly We are using MVC with .NET latest vesrion (v8.1.0 with .NetCore 3.1) and Visual studio 2019. When edit any js file during debug , i have to minify the file to be able to see the updates on broswer. how i can force the debug to read from js file (not min file) during development. and just read form minified file during release version.

Regards

Showing 1 to 10 of 19 entries