Re: Reading config file from Orchestration

Home Page Forums BizTalk 2004 – BizTalk 2010 Reading config file from Orchestration Re: Reading config file from Orchestration

#16414

Thank you that worked for me. However, the key point in here is to put your settings at the very top of the config file.

so the structure would look like as shown below

<?xml version="1.0" ?>
<configuration>
    <appSettings>

           // custom key/value pair goes here
    </appSettings>

    <runtime>
   </runtime>
   
    <system.runtime.remoting>
   
        <channelSinkProviders>
            <serverProviders>
                <provider id="sspi"

type="Microsoft.BizTalk.XLANGs.BTXEngine.SecurityServerChannelSinkProvider,Microsoft.XLANGs.BizTalk.Engi

ne" securityPackage="ntlm" authenticationLevel="packetPrivacy" />
            </serverProviders>
        </channelSinkProviders>
   
        <application>
            <channels>
                <channel ref="tcp" port="0" name="">
                 <serverProviders>
                     <provider ref="sspi" />
                        <formatter ref="binary" typeFilterLevel="Full"/>
                    </serverProviders>
                </channel>
            </channels>
        </application>
    </system.runtime.remoting> 
</configuration>