Configuration Files for Biztalk Business Processes

A single Biztalk server can have multiple host processes. Is it possible to create an application configuration file for each host process? For example, I would like to use Unity or log4net or something that needs such a configuration file.

Edit: Thanks, David Hall. To develop a little more: We have 12 Biztalk servers in a group, each of which runs from 5 to 10 host processes. Some processes performed by the host are unique to each process, but they also use a lot of code at the library level. The trigger for my question was the need to configure, for example, the trace levels for one system part (equivalent to the host process), which is currently creating problems.

Alternatively this will help if I can figure out which host process the current code is running in, but I will send it to another question.

+3
source share
1 answer

If I interpret your question correctly, do you want to have a separate version of the BTSNTSvs.exe.config file for each host instance?

So, in addition to the BizTalkServerApplication host instance, do you have YourHostInstance host instances for which you want to have a separate configuration?

I am not 100% aware that you cannot do this, but I am pretty sure that this is not possible.

I am sure this is not possible for the following reasons:

  1. The BTSNTSvc.exe.config file is attached to the BTSNTSvc.exe main executable file.
  2. , BTSNTSvc.exe.config, .

BizTalk, , - , - , .

, , , log4net, BTSNTSvc.exe.config, .

, , - .

+4

Source: https://habr.com/ru/post/1697561/


All Articles