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:
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
5 Answer(s)
-
0
Hi, i shared project with you.
Can you check mailbox?
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
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"); }); } }Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Thanks, solved my problem.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
