@vijay.nallala asks
I have created MVC Tired Applications –
Deployed – Identity Server, (IdenityManagerApi/IdenityManagerWeb).. all setting working fine but – deployment all setting update/save is not working as expected for all functions. Please suggest ASAP. Also the delete functionality not working. This is I have replicated many times creating brand new application from ABP Suite. All working fine but after deployment not working. Can you please look into ASAP. If required we can setup the meeting will go over and replicate to you. This is very urgent.
8 Answer(s)
-
0
hi you need web.confg or appsetting
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
<?xml version="1.0" encoding="utf-8"?> <configuration> <location path="." inheritInChildApplications="false"> <system.webServer> <handlers> <add name="aspNetCore" path="" verb="" modules="AspNetCoreModuleV2" resourceType="Unspecified" /> </handlers> <aspNetCore processPath=".\Mcp.IdentityManager.Web.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="InProcess" /> </system.webServer> </location> </configuration> <!--ProjectGuid: 6FE54035-9C11-4702-A5E2-D16F23101468-->
Appsetting below
{ "App": { "SelfUrl": "https://dev-idm.testdomain.com" }, "RemoteServices": { "Default": { "BaseUrl": "https://dev-idm.testdomain/idmapi/" } },
"Redis": { "Configuration": "127.0.0.1" },
"AuthServer": { "Authority": "https://dev-ids.testdomain.com/", "RequireHttpsMetadata": "true", "ClientId": "IdentityManager_Web", "ClientSecret": "1q2w3e*" }, "StringEncryption": { "DefaultPassPhrase": "KdJ301s5dk73YlJq" }, "AbpLicenseCode": "" }Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
for IDS { "App": { "SelfUrl": "https://dev-ids.testdomain.com", "CorsOrigins": "https://.testdomain.com,http://localhost:4200,https://localhost:44357,https://localhost:44398,https://localhost:44307,https://localhost:44350,http://localhost:4205,https://localhost:44300,http://localhost:50500,https://dev-idm.testdomain.com,https://localhost:44310,https://localhost://44350", "RedirectAllowedUrls": "http://localhost:4200,https://localhost:44307,https://localhost://44310,https://localhost:44357,https://localhost:44398" }, "ConnectionStrings": { "Default": "" }, "StringEncryption": { "DefaultPassPhrase": "KdJ301s5dk73YlJq" }, "Settings": { "Abp.Identity.TwoFactor.Behaviour": "Forced", "Abp.Account.TwoFactorLogin.IsRememberBrowserEnabled": "True", "Abp.Identity.SignIn.EnablePhoneNumberConfirmation": "False", "Abp.Account.IsSelfRegistrationEnabled": "True", / "Abp.Account.EnableLocalLogin": "False",/ "Abp.Mailing.Smtp.Host": ", "Abp.Mailing.DefaultFromAddress": "", "Abp.Mailing.DefaultFromDisplayName": "", "Volo.Abp.LeptonTheme.Style": "Style6", / Options: Style1, Style2... Style6 / "Volo.Abp.LeptonTheme.Layout.MenuPlacement": "Left", / Options: Left, Top / "Volo.Abp.LeptonTheme.Layout.MenuStatus": "AlwaysOpened", / Options: AlwaysOpened, OpenOnHover / "Volo.Abp.LeptonTheme.Layout.Boxed": "False" / Options: True, False */ }, "AzureAd": { "Instance": "https://login.microsoftonline.com/", "TenantId": "", "ClientId": "", "ClientSecret": "", "CallbackPath": "/signin-azuread-oidc" }, "Redis": { "Configuration": "127.0.0.1" }, "AbpLicenseCode": "" }
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
for IDM API.
{ "App": { "SelfUrl": "https://dev-idm.testdomain.com/idmapi/", "AngularUrl": "http://localhost:4200", "MVCPublicUrl": "https://localhost:44306", "CorsOrigins": "https://.testdomain.com" }, "ConnectionStrings": { "Default": "" }, "Redis": { "Configuration": "127.0.0.1" }, "AuthServer": { "Authority": "https://dev-ids.testdomain.com", "RequireHttpsMetadata": "true", "SwaggerClientId": "IdentityManager_Swagger", "SwaggerClientSecret": "1q2w3e" }, "StringEncryption": { "DefaultPassPhrase": "KdJ301s5dk73YlJq" }, "Settings": {
"Abp.Mailing.Smtp.Host": "1", "Abp.Mailing.DefaultFromAddress": "", "Abp.Mailing.DefaultFromDisplayName": "", "Volo.Abp.LeptonTheme.Style": "Style6", /* Options: Style1, Style2... Style6 / "Volo.Abp.LeptonTheme.Layout.MenuPlacement": "Left", / Options: Left, Top / "Volo.Abp.LeptonTheme.Layout.MenuStatus": "AlwaysOpened", / Options: AlwaysOpened, OpenOnHover / "Volo.Abp.LeptonTheme.Layout.Boxed": "False" / Options: True, False */ }, "AbpLicenseCode": "" }Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
hi @vijay.nallala
Can you check your browser console when the error occur?
Maybe same with: https://support.abp.io/QA/Questions/1058/Error-UpdatingDeleting-records-when-application-is-deployed-to-IIS-Server#answer-bfb20de2-7123-b31f-27ac-39fb546555c9
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
This question has been automatically marked as stale because it has not had recent activity.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)