biztalk制作服务器上是否需要安装Visual Studio

发布于 2024-12-25 07:07:58 字数 180 浏览 4 评论 0原文

我的 biztalk 生产服务器上没有安装 Visual stodio。

现在我必须在生产服务器中创建一个应用程序,该应用程序将使用已部署在生产服务器中的另一个应用程序的架构。

我必须在新应用程序中引用现有应用程序的架构

是否需要在生产服务器上安装 Visual Studio 或者有任何其他选项。

My biztalk production server does not have Visual stodio installed on the server.

Now i have to create one application in the production server which will use schema from another application which is already deployed in the production server .

I have to reference the schema from the existing application in the new application

is it necessary to have visual studio installed on the production server or there is any other option.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

み零 2025-01-01 07:07:59

不,没有必要(或者在我看来不需要)在 BizTalk 生产服务器上安装 VS。

您需要做的是将公共架构程序集复制到您的 BizTalk 开发环境,然后从新项目引用该程序集。

如果您没有引用架构的源,则可以从安装目录(如果使用基本 MSI 导出进行部署,通常为 %PROGRAMFILES%\Generated By BizTalk)获取架构程序集,但是如果它是与部署框架一起安装的,则可能会有所不同等)。或者,该程序集也可以在 GAC 中使用(命令行 C:\Windows\Assembly\GAC_MSIL\{AssemblyName}\{Version}__{GUID}\Assembly.DLL),

然后您可以使用新项目中引用的架构。
不要将引用的架构程序集作为资源添加到新项目中,因为它已经部署(并且程序集只能“属于”一个应用程序)。

No, it isn't necessary (or desirable IMO) to install VS on BizTalk Production Servers.

What you need to do is to copy the common schema assembly to your development BizTalk environment, and then reference the assembly from your new Project.

If you don't have the source to the referenced schemas, then you can get the schema assembly from the installation directory (usually %PROGRAMFILES%\Generated By BizTalk if you deploy with the basic MSI export, but may differ if it was installed with the deployment framework etc). Alternatively, the assembly will also be available in the GAC (command line C:\Windows\Assembly\GAC_MSIL\{AssemblyName}\{Version}__{GUID}\Assembly.DLL)

You can then use the referenced schemas in your new project.
Do not add the referenced schema assembly as a resource to your new project as this is already deployed (and an assembly can only 'belong' to one application).

甜点 2025-01-01 07:07:59

您还可以从 BizTalk 管理控制台获取架构定义。

在“架构”下找到所需的架构,右键单击并选择“属性”,然后选择“架构视图”。

You can also get the schema definition from the BizTalk Admin Console.

Locate the required schema under Schemas, right-click and select Properties, then Schema View.

ペ泪落弦音 2025-01-01 07:07:59

在开发计算机上安装 Visual Studio,在那里进行开发工作,然后将其部署到生产服务器。

Install visual studio on a development machine, do the development work there and then deploy it to the production server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文