Aperto Chiuso

Updating application causing error related to IDistributedEventBus #5545


User avatar
0
Sergei.Gorlovetsky creato
  • ABP Framework version: v7.3.1
  • UI Type: Angular
  • Database System: MongoDB
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace: Could not load type 'Volo.Abp.EventBus.Distributed.IDistributedEventBus' from assembly 'Volo.Abp.EventBus, Version=7.3.1.0, Culture=neutral, PublicKeyToken=null'
  • Steps to reproduce the issue: We updated the ABP.IO version from version v5.3.2 to latest v7.3.1, after updating the application when we try to run Host API, the application stops with the error Could not load type 'Volo.Abp.EventBus.Distributed.IDistributedEventBus' from assembly 'Volo.Abp.EventBus, not sure what is the exact issue, is it related to the modules we created or is it in core application. Please review the project using remote desktop and help to sort out the issue.

11 risposte
  • User Avatar
    0
    gterdem creato
    Team di supporto Senior .NET Developer

    Hello,

    Did you check both ABP Framework Migration Guide and the Commercial Migrations Guide?

    If it didn't help you can create a zoom invitation to galip.erdem@volosoft.com for Thursday at 10:00 AM Toronto time.

  • User Avatar
    0
    Sergei.Gorlovetsky creato

    We checked both documents and follow the steps, the issue arises when we convert version from 7.3.0 to 7.3.2 (latest). We have tried updating the version step by step like 5 to 6, 6 to 7 and latest but after last updating, the API project gives error Could not load type 'Volo.Abp.EventBus.Distributed.IDistributedEventBus'.

    Let's join on zoom as you mentioned,

    Join Zoom Meeting https://us04web.zoom.us/j/74121135902?pwd=4CP08Eudxkml2HEMUrkKfxkEL0AvqL.1

    Meeting ID: 741 2113 5902 Passcode: YDS4fF

  • User Avatar
    1
    huseyinalan creato

    We are also facing the same issue, what is the current status?

  • User Avatar
    0
    serdar.genc@talentra.net creato

    Same problem

  • User Avatar
    0
    gterdem creato
    Team di supporto Senior .NET Developer

    We're investigating the problem.

    @serdar.genc@talentra.net and @huseyinalan can you give information about from which version you are updating to v7.3.1? Or were you updating to v7.3.2?

  • User Avatar
    0
    serdar.genc@talentra.net creato

    We're investigating the problem.

    @serdar.genc@talentra.net and @huseyinalan can you give information about from which version you are updating to v7.3.1? Or were you updating to v7.3.2?

    Hi , 7.3.2

  • User Avatar
    0
    serdar.genc@talentra.net creato

    Galip, biz problemimizi hallettik. Projede 'AbpPaymentStripeHttpApiModule' modulunu kullanıyorduk. 7.3.2 upgrade sonrası paketler restore olmadı. 'AbpPaymentStripeHttpApiModule' modulunu projeden kaldırdık. Restore oldu. Bu modüle bakmalısınız.

  • User Avatar
    0
    gterdem creato
    Team di supporto Senior .NET Developer

    Galip, biz problemimizi hallettik. Projede 'AbpPaymentStripeHttpApiModule' modulunu kullanıyorduk. 7.3.2 upgrade sonrası paketler restore olmadı. 'AbpPaymentStripeHttpApiModule' modulunu projeden kaldırdık. Restore oldu. Bu modüle bakmalısınız.

    I had to dig to find the problem, yes it is related to Payment Module. The related changes are documented here: https://docs.abp.io/en/commercial/latest/migration-guides/v5_2#payment-module Saas and Payment modules are no longer coupled. But if you want to use it together please check this docs aswell: https://docs.abp.io/en/commercial/latest/migration-guides/v5_3#saas-payment-module-dependency-improvements

    TLDR: Remove the Volo.Payment.Stripe.HttpApi dependency and make the related configuration to use with SaasModule:

    Configure<AbpSaasPaymentOptions>(options =>
    {
        options.IsPaymentSupported = true;
    });
    
  • User Avatar
    0
    serdar.genc@talentra.net creato

    Galip, biz problemimizi hallettik. Projede 'AbpPaymentStripeHttpApiModule' modulunu kullanıyorduk. 7.3.2 upgrade sonrası paketler restore olmadı. 'AbpPaymentStripeHttpApiModule' modulunu projeden kaldırdık. Restore oldu. Bu modüle bakmalısınız.

    I had to dig to find the problem, yes it is related to Payment Module. The related changes are documented here: https://docs.abp.io/en/commercial/latest/migration-guides/v5_2#payment-module Saas and Payment modules are no longer coupled. But if you want to use it together please check this docs aswell: https://docs.abp.io/en/commercial/latest/migration-guides/v5_3#saas-payment-module-dependency-improvements

    TLDR: Remove the Volo.Payment.Stripe.HttpApi dependency and make the related configuration to use with SaasModule:

    Configure<AbpSaasPaymentOptions>(options => 
    { 
        options.IsPaymentSupported = true; 
    }); 
    

    haklısın. bizim hatamız. teşekkürler.

  • User Avatar
    0
    gterdem creato
    Team di supporto Senior .NET Developer

    Galip, biz problemimizi hallettik. Projede 'AbpPaymentStripeHttpApiModule' modulunu kullanıyorduk. 7.3.2 upgrade sonrası paketler restore olmadı. 'AbpPaymentStripeHttpApiModule' modulunu projeden kaldırdık. Restore oldu. Bu modüle bakmalısınız.

    I had to dig to find the problem, yes it is related to Payment Module. The related changes are documented here: https://docs.abp.io/en/commercial/latest/migration-guides/v5_2#payment-module
    Saas and Payment modules are no longer coupled. But if you want to use it together please check this docs aswell: https://docs.abp.io/en/commercial/latest/migration-guides/v5_3#saas-payment-module-dependency-improvements

    TLDR: Remove the Volo.Payment.Stripe.HttpApi dependency and make the related configuration to use with SaasModule:

    Configure<AbpSaasPaymentOptions>(options =>  
    {  
        options.IsPaymentSupported = true;  
    });  
    

    haklısın. bizim hatamız. teşekkürler.

    Hayır lütfen hata falan yok :) Bir çok kişi aynı sorunu yaşıyor ve gözden kaçıyorsa biz daha dikkat çekici yazmalıyız migration dokümanını.

    @Sergei, If your problem is resolved you can close the issue. Let me know if the problem persists.

  • User Avatar
    0
    Sergei.Gorlovetsky creato

    Hi Galip,

    We have followed steps you defined and problem is resolved now related to IDistributedEventBus

    Thanks for your support

Made with ❤️ on ABP v8.2.0-preview Updated on marzo 25, 2024, 15:11