Hi Experts,
We would like to know the following about the ASP.NET Zero framework:
What is the maximum concurrent user count are supported by the framework? For Example: if we have more than 100,000 users logged into the application. We would like to understand from your experience.
What is the minimum server requirement (e.g., Server configurations, RAM etc.) to run the ASP.NET Zero applications?
As we are planning to host the web application in the docker environment per customer. Therefore, we would like to know the minimum requirement to run the framework for at least 10 simultaneous active users.
Any help would be much appreciated.
Thanks,
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Changing the text of below key does not take into effect and it always shows the original text only. I also tried changing from language menu option but that still did not work and it always shows the original text. Please advise..
<!--<text name="AtLeastOneOfThesePermissionsMustBeGranted">Required permissions are not granted. At least one of these permissions must be granted: {0}</text>--> <text name="AtLeastOneOfThesePermissionsMustBeGranted">You do not have requisite permissions for this process.\nPlease contact your Manager.{0}</text>
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
When we enter a wrong password in the login screen, it says "Invalid user name or password". I was expecting the same when we enter wrong password in the Session Lock Screen. But when we enter wrong password in Seccion Lock Screen, though it says "Invalid user name or password" but after that immediately redirects the user to login screen. How can we let the user remain on Session Lock Screen itself....
How can we fix this?
Regards, Mahendra
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi Experts,
We are using sweet alert js for custom error pop-up. Our requirment is to redirect the page after click on OK button. When we'll click on OK button an API will call, on the basis of API's result, page'll redirect. IS there any way to achieve that ?
Thanks
Hi Experts,
We are using PostgreSQL as database server in our current application which is on aspnetzero version 8.2.
We want to upgrade our application from aspnetzero version 8.2 to 10.5.
We are following the version upgrade document on the following link. https://docs.aspnetzero.com/en/common/latest/Version-Updating
As per the document we need to copy the 10.5 version on the aspnetzero branch and then merge the dev branch from the aspnetzero branch.
As you know that latest fresh source code of 10.5 is with the SQL server database and our application (i.e. 8.2 version) is working with the PostgreSQL.
Could you please let us know the steps for handling EF migrations and Snapshots (with PostgreSQL database) while upgrading from version 8.2 to 10.5?
Thanks in advance
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi Experts,
We want to know that if Aspnetzero is using Webpack for bundling and minification ?
In the below aspnet zero documentation link: https://docs.aspnetzero.com/en/aspnet-core-angular/v7.2.0/Infrastructure-Angular-Bundling-Minifying-Compiling
We found below text :
AspNet Zero uses Gulp for bundling & minifying such dynamic script and style files.
We would like to know if webpack is supported in aspnetzero, if yes, then we would like to know how to implement it.
Thanks,
Hi Experts,
We are getting following error from the abp framework : Required permissions are not granted. At least one of these permissions must be granted: Create new OE project
When this error comes in Popup on the screen..We want to split the text in new line after the colon (i.e :)
For example: Required permissions are not granted. At least one of these permissions must be granted: Create new OE project
Could you please let us know how can we acheive this.
Any help would be much appreciated.
Thanks,
Hi Experts,
We want to run our angular project on local machine IP address instead of localhost.
For Example :
Existing Url : http://localhost:4200/ Expected Url : http://<machine IP address>:<port>
Could you please let us know the step by step changes which we need to do in our server side code (i. e. Visual Studio) and angular project code (i.e Visual Studio Code) both.
Any help would be much appreciated.
Thanks, Best Regards
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
We are getting below error while clicking on the Logout.
Note: User is logged in successfully..if he click on Logout this message appears.
Could you please let us know how to resolve this..or please let us know the condition when framework throw this exception.
Any help would be much appreciated.
Thanks
Hi Experts,
We have hosted our asp.net zero web application(.net core + angular) on AWS Beanstalk-LINUX based node.js environment. We have a requirement to change the Cache-control to max-size = 31536000. As our angular application hosted on AWS Beanstalk-LINUX based node.js environment, With the help of the AWS support we are able to achieve the same using the below nginx.conf file.
---------nginx.conf Start---------------------------------------------------------------------
`#Elastic Beanstalk Nginx Configuration File
user nginx; errorlog /var/log/nginx/error.log warn; pid /var/run/nginx.pid; workerprocesses auto; workerrlimitnofile 32633;
events { workerconnections 1024; }
http { include /etc/nginx/mime.types; defaulttype application/octet-stream;
logformat main '$remoteaddr - $remoteuser [$timelocal] "$request" '
'$status $bodybytessent "$httpreferer" '
'"$httpuseragent" "$httpxforwardedfor"';
include conf.d/.conf;
map $httpupgrade $connectionupgrade {
default "upgrade";
}
#------------------------------------------------------------------------
map $cache $control { 1 "public"; }
map $cache $expires { 1 31536000; default off; # or some other default value }
map $uri $cache { ~.(js|css|png|jpe?g|gif|ico)$ 1; } #----------------------------------------------------------------
server {
listen 80 defaultserver;
accesslog /var/log/nginx/access.log main;
clientheadertimeout 60;
clientbodytimeout 60;
keepalivetimeout 60;
gzip off;
gzipcomplevel 4;
gziptypes text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
#---------------------------------
# Adding Cache-Control headers
addheader Cache-Control "$control,max-age=$expires";
#---------------------------------
# Include the Elastic Beanstalk generated location
include conf.d/elasticbeanstalk/.conf;
}
}`
------------nginx.conf End-------------------------------------------------------
Now as you can see in the below screen shot that cache-control max-size is set to 31536000. However we are also getting the cache-control:public, max-age=0.
As per AWS support, these response headers are coming from application itself and we are not aware from where in our aspnet zero application we are setting these response headers or how to remove them.
Could you please help us in removing the cache-control response header with the max-age=0.
We also checked the below option. https://support.aspnetzero.com/QA/Questions/10428/Removeoverride-cache-control-property-from-the-Response-Header But visual studio does not recognize the DefaultResponseCacheAttributeForAppServices/ DefaultResponseCacheAttributeForControllers
Any help would be much appreciated.
Thanks, Regards