Azure Service Fabric missing DLL on production server: FabricCommon.dll

前端 未结 5 1226
太阳男子
太阳男子 2020-12-31 14:09

I have created an actor service, which runs on a development cluster. An ASP.NET application (hosted separately via IIS), connects to the cluster and uses the actors. This w

相关标签:
5条回答
  • 2020-12-31 14:13

    I had the same issue. Reboot my machine solved the issue.

    0 讨论(0)
  • 2020-12-31 14:26

    For cases when you can't install Service Fabric SDK on target environment there is an option to use Service Fabric REST API.

    Here is my repo with API client written in C# which can resolve service using this API

    0 讨论(0)
  • 2020-12-31 14:33

    I think you need to install Service Fabric SDK on the web server.

    See the link below: https://azure.microsoft.com/en-us/documentation/articles/service-fabric-get-started/

    0 讨论(0)
  • 2020-12-31 14:35

    Add the following Service Fabric bin path to your PATH environment variable:

    set PATH=%PATH%;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code 
    

    Also set execution policy to unrestricted:

    Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force -Scope CurrentUser 
    
    0 讨论(0)
  • 2020-12-31 14:36

    I have this happen at one point in my dev machine. All I did was to reinstall the Service Fabric SDK.

    0 讨论(0)
提交回复
热议问题