1
huseyinalan created
Hello, i want to use url forwarding system. I followed the steps given in the docs (https://docs.abp.io/en/commercial/5.2/modules/cms-kit/url-forwarding) but i got exception in tiered application.
I created new application and tried again, didn't work also.
- ABP Framework version: v5.2.2
- UI type: MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): yes
- Exception message and stack trace:
5 Answer(s)
-
1
hi
I will check this. : )
-
0
hi
It seems the issue has been fixed.
Can you reproduce problem and share the project with me?
liming.ma@volosoft.com
-
0
Hi, i shared project with you.
Can you check mailbox?
-
0
hi
Add these code to the web.public project.
public override void ConfigureServices(ServiceConfigurationContext context) { var serviceType = typeof (CmsKitProPublicApplicationContractsModule).Assembly.GetTypes().FirstOrDefault(x => x == typeof(IUrlShortingPublicAppService)); if (serviceType != null) { context.Services.Configure<AbpHttpClientOptions>(options => { options.HttpClientProxies[serviceType] = new HttpClientProxyConfig(serviceType, "CmsKitProPublic"); }); } }
-
0
Thanks, solved my problem.