本文介绍了如何在Service Fabric上运行32位.Net Core 2.2应用程序作为GuestExecutables。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在Visual Studio中有一个有多个项目的解决方案,有些是.Net core 2.2应用程序,我想在64位模式下运行,一些.Net core 2.2应用程序在32位模式下运行,有些是.Net框架项目采用32位模式,我也是
也使用Service Fabric Reliable集合。这些项目也在相互沟通。

I have one solution in Visual Studio with multiple projects, some are .Net core 2.2 application which I want to run on 64 bit mode, some .Net core 2.2 application which are running on 32 bit mode, some are .Net framework project with 32 bit mode, and I am also using Service Fabric Reliable collections. and these projects are communicating with each other also.

我想将所有这些项目转换为GuestExecutables服务并在Service Fabric上托管它。

I want to convert all these projects as GuestExecutables services and host it on Service Fabric.

I已经转换并托管了所有64位项目,但我遇到了32位应用程序的问题。 有一种服务以32位模式运行并与可靠集合进行通信,当我将其转换为GuestExecutables并在Service Fabric上托管
时,此服务未提供所需结果,因为它在没有Service Fabric的情况下工作。

I have converted and hosted all the 64 bit projects but I am facing issues with 32 bit applications.  There is one service running in 32 bit mode and communicating with reliable collections , when I am converting this as GuestExecutables and hosted on Service Fabric this service is not giving desired result, as it was working without Service Fabric.

请告诉我,我们可以运行32位.Net Core 2.2应用程序(与可靠的集合通信)作为Service Fabric上的客户可执行文件吗?

Please tell me can we run 32 bit .Net Core 2.2 application (which is communicating with reliable collection) as guest executables on Service Fabric?

推荐答案

https://stackoverflow.com/questions/33677719/azure-service-fabric-32-bit-support

" 您可以在Service Fabric中托管任何现有的应用程序( https://azure.microsoft.com/en-us/documentation/articles/service-fabric-deploy-existing-app/ )。
但是如果你想使用可靠的集合,可靠的actor API,你的应用程序需要64位。对于集群上的管理操作,Service Fabric提供REST API,所以你可以使用任何来自32位应用程序的HTTP堆栈,用于管理群集中的应用程序
。"


这篇关于如何在Service Fabric上运行32位.Net Core 2.2应用程序作为GuestExecutables。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 12:06