Activities of "sefa"

Thanks. I changed the app token lifetime and the problem was solved.

     public MerchantAppService(
         IMerchantRepository merchantRepository,
         IProductGroupAppService productGroupAppService,
         ...
     )
     {
         _productGroupAppService = productGroupAppService;
         ...
     }

    public async Task<MerchantDetailDto> GetDetailAsync(Guid id)
    {
        MerchantDetailDto merchantDetail = new MerchantDetailDto();
        var merchant = await _merchantRepository.GetDetailAsync(id);
        merchantDetail.Merchant = ObjectMapper.Map<Merchant, MerchantDto>(merchant);
        merchantDetail.ProductGroups = await _productGroupAppService.GetListByMerchantIdAsync(id);
        ...
    }

Thanks. I solved it using integration service.

hi maliming

Thank you for your quick response. I created IntegrationAppService in IdentityService. But I cannot access this service I created from other microservices.

Identity.Contracts

Identity.Application

Microservice application.csproj

Microservice application.cs

I know I can't access it because I can't create proxies in the identity service. But I still wanted to explain. What should I do now?

Showing 1 to 4 of 4 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.