Modifying BizTalk Server Configuration

Parent Previous Next

The BizTalk orchestration engine includes a number of lesser-known options for debugging and developer assistance, all of which are disabled by default.  They can be very useful during the application development and testing cycle.  The Deployment Framework for BizTalk can automatically configure these features in the BizTalk service configuration file (BTSNTSvc.exe.config).


Enable Option Configuration

Before using any of the following properties, edit your Deployment Framework for BizTalk project file (.btdfproj) as follows:


Set the ConfigureBizTalkDebuggingFeatures property to true

The property may be included in any PropertyGroup, but is commonly placed in the first PropertyGroup in the project file.


<PropertyGroup>

 ...

 <ConfigureBizTalkDebuggingFeatures>true</ConfigureBizTalkDebuggingFeatures>

 ...

</PropertyGroup>


Extended Logging

To enable extended logging, edit your Deployment Framework for BizTalk project file (.btdfproj) as follows:


Set the EnableBizTalkExtendedLogging property to true

The property may be included in any PropertyGroup, but is commonly placed in the first PropertyGroup in the project file.


<PropertyGroup>

 ...

 <EnableBizTalkExtendedLogging>true</EnableBizTalkExtendedLogging>

 ...

</PropertyGroup>


Assembly Validation

To enable assembly validation, edit your Deployment Framework for BizTalk project file (.btdfproj) as follows:


Set the EnableBizTalkAssemblyValidation property to true

The property may be included in any PropertyGroup, but is commonly placed in the first PropertyGroup in the project file.


<PropertyGroup>

 ...

 <EnableBizTalkAssemblyValidation>true</EnableBizTalkAssemblyValidation>

 ...

</PropertyGroup>


Correlation Validation

To enable correlation validation, edit your Deployment Framework for BizTalk project file (.btdfproj) as follows:


Set the EnableBizTalkCorrelationValidation property to true

The property may be included in any PropertyGroup, but is commonly placed in the first PropertyGroup in the project file.


<PropertyGroup>

 ...

 <EnableBizTalkCorrelationValidation>true</EnableBizTalkCorrelationValidation>

 ...

</PropertyGroup>


Schema Validation

To enable schema validation, edit your Deployment Framework for BizTalk project file (.btdfproj) as follows:


Set the EnableBizTalkSchemaValidation property to true

The property may be included in any PropertyGroup, but is commonly placed in the first PropertyGroup in the project file.


<PropertyGroup>

 ...

 <EnableBizTalkSchemaValidation>true</EnableBizTalkSchemaValidation>

 ...

</PropertyGroup>


Created with the Personal Edition of HelpNDoc: Free iPhone documentation generator