Re: BizTalk 2004 on .NET framework 2.0?
- From: wjzhang@xxxxxxxxxxxxxxxxxxxx ("WenJun Zhang[msft]")
- Date: Mon, 04 Sep 2006 11:14:30 GMT
Hi Jan,
Generally changing the config file to specify the runtime isn't required.
However somebody did meet particular issues when .NET Framework 2.0 runtime
present with older versions of .NET Framework, the unmanaged executables
that use interop to access .NET managed code will load the latest version
of .NET Framework i.e. 2.0,
causing some issue with manage code build with older version of .NET
Frameworks. In this case, we had to add the following section to their
application config file, which ensure that version 1.1 of the .NET
Framework loaded into process.
<configuration>
<startup>
<supportedRuntime version="V1.1.4322" />
<requiredRuntime version="V1.1.4322" />
</startup>
To take caer of this, you may create BTSNTSvc.exe.config file and place it
in the same folder as of BTSNTSvc.exe.
<configuration>
<startup>
<supportedRuntime version="v1.1.4322" />
</startup>
</configuration>
Please let me know if you have further concern on this issue. Thanks.
Sincerely,
WenJun Zhang
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at:
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
.
- Follow-Ups:
- Re: BizTalk 2004 on .NET framework 2.0?
- From: Glenn
- Re: BizTalk 2004 on .NET framework 2.0?
- References:
- Re: BizTalk 2004 on .NET framework 2.0?
- From: Bill Ticehurst
- Re: BizTalk 2004 on .NET framework 2.0?
- From: Jan Eliasen
- Re: BizTalk 2004 on .NET framework 2.0?
- Prev by Date: Re: BAS Setup
- Next by Date: Looping Flat File Schema node
- Previous by thread: Re: BizTalk 2004 on .NET framework 2.0?
- Next by thread: Re: BizTalk 2004 on .NET framework 2.0?
- Index(es):
Relevant Pages
|