Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "oguzhanagir"

Hi Vidyadhar

Sorry for the late reply. What is the value of the permissionProvider variable in the AddNewPermission method when the method is called?

Hi OriAssurant

If your model classes have circular references (e.g., a property in Class A references Class B, and Class B references Class A), NSwag may struggle to generate the schema. Try using [JsonIgnore] or [SwaggerIgnore] attributes on properties that create circular references.

Hi vvijaydeveloper

Currently, our support for multiple uploads in a field is not available from RadTools. I will add improving this to our issues.

Hi BaoNT3

To disable all authentication in IIS and keep your site running, just go to your site settings in IIS, find the Authentication section, and turn off Anonymous, Basic, and Windows Authentication. Then, in your appsettings.json, disable authentication as needed and add [AllowAnonymous] to any controllers that should be accessible.

If Basic Authentication is on and you want to skip the login popup, you can put your username and password right in the URL like this: http://username:[email protected]. Another option is to set up some middleware or a proxy to manage authentication without the popup.

Hi vvijaydeveloper

Yes, you can create more than one file upload field in one entity.

Hi klir

In order to define the custom provider you have added, you can define External Login in the ConfigureExternalAuthProviders method in *WebHostModule.cs. If you are using MVC, you can do this in *WebMvcModule.cs. This is the reason why it does not appear in ExternalLoginInfoProviders. If you want to use a tenant-based structure, you can define a class that will inherit TenantBasedExternalLoginInfoProviderBase.

Hi

For SSO you can use SAML 2.0, WS-Federation or OpenId. The blog post here explains how to integrate Microsoft Entra ID using OpenId. You must also mark the AllowSocialLoginSettingsPerTenant setting as true in appsettings.json. You can also review the Microsoft document.

Answer

We're glad you resolved your problem. Thank you for your information. Enjoy your work.

Answer

Hi sandy

By using Azure Front Door (in a WAF policy), you can configure wildcard subdomain routing. Azure Front Door provides global distribution and allows you to route requests based on subdomains. It supports wildcard subdomains and also manages SSL configurations. This way, you can direct all tenant subdomain requests, like "tenantName.mydomain.com" , to your main application through Front Door. Did you set up the routing using Front Door?

Hi pliaspzero

Your package.json's post-publish script uses shx to move the dist folder contents, but it seems not to be executing successfully. Try changing the post-publish to run explicitly in the pipeline with a custom command after the npm run build

task: CmdLine@2
displayName: Move Dist to wwwroot
inputs:
  script: 'mv ./dist/* ./wwwroot/'
workingDirectory: src/MyApp.Web.Host

When the publish is completed, go to the publish directory and move all files from wwwroot/dist to wwwroot folder.

Make sure the dist folder is created

Showing 41 to 50 of 166 entries