PC Review


Reply
Thread Tools Rate Thread

32-bit .net 1.1 apps on Win2003 x64

 
 
Frank Rizzo
Guest
Posts: n/a
 
      3rd Jan 2007
I have a set of apps that require .net 1.1 framework. I've installed
them on Windows 2003 Server (x64) with the .net 2.0 (x64) framework. I
can't seem to find the x64 1.1 framework and the x86 .net 1.1 framework
refuses to install on win2003 x64. Is there such a thing as x64 1.1
framework? If not, is there a way to fool the apps into thinking that
the 1.1 framework is installed?

Regards
 
Reply With Quote
 
 
 
 
Kevin Yu [MSFT]
Guest
Posts: n/a
 
      4th Jan 2007
Hi Frank,

Unfortunately, there is no x64 version for .NET framework 1.1. If this is a
..NET application, it should be working fine on .NET framework 2.0 for
backward compatibility, except for some break changes. You don't need to
fool the app, it will automatically running on .NET framework 2.0 runtime
if it detects that only .NET 2.0 is installed.

Also, you can specify the runtime version in your application's app.config
file with the following block:

<configuration>
<startup>
<supportedRuntime version="v2.0.50727" />
</startup>
</configuration>

This is often used when 2 different versions of framework are installed on
one machine.

Here are some newgroup thread that you can reference on this issue.

http://forums.microsoft.com/MSDN/Sho...60931&SiteID=1

http://groups.google.com/group/micro...es.vb/browse_t
hread/thread/ca379a50bb249700/bcecfce1f9190280?lnk=st&q=.net+1.1+app+run+on+
..net+2.0&rnum=2&hl=en#bcecfce1f9190280

If anything is unclear, please feel free to let me know.

Kevin Yu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.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/subscripti...t/default.aspx.
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

 
Reply With Quote
 
Frank Rizzo
Guest
Posts: n/a
 
      4th Jan 2007
Kevin Yu [MSFT] wrote:
> Hi Frank,
>
> Unfortunately, there is no x64 version for .NET framework 1.1. If this is a
> .NET application, it should be working fine on .NET framework 2.0 for
> backward compatibility, except for some break changes. You don't need to
> fool the app, it will automatically running on .NET framework 2.0 runtime
> if it detects that only .NET 2.0 is installed.
>
> Also, you can specify the runtime version in your application's app.config
> file with the following block:
>
> <configuration>
> <startup>
> <supportedRuntime version="v2.0.50727" />
> </startup>
> </configuration>


Well, that's part of the problem. There were some issues with running
the apps against .net 2.0. Thus the original authors required the 1.1
framework using the <requiredRuntime version="v1.1***"/>.

Regards

>
> This is often used when 2 different versions of framework are installed on
> one machine.
>
> Here are some newgroup thread that you can reference on this issue.
>
> http://forums.microsoft.com/MSDN/Sho...60931&SiteID=1
>
> http://groups.google.com/group/micro...es.vb/browse_t
> hread/thread/ca379a50bb249700/bcecfce1f9190280?lnk=st&q=.net+1.1+app+run+on+
> .net+2.0&rnum=2&hl=en#bcecfce1f9190280
>
> If anything is unclear, please feel free to let me know.
>
> Kevin Yu
> Microsoft Online Community Support
>
> ==================================================
> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/subscripti...ult.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/subscripti...t/default.aspx.
> ==================================================
>
> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>

 
Reply With Quote
 
Kevin Yu [MSFT]
Guest
Posts: n/a
 
      4th Jan 2007
Hi Frank,

Does this app touch the break changes in .NET 2.0. Since only .NET
framework 2.0 is supported on x64 OS, in this case, it seems that we cannot
run it on x64 OS.

Kevin Yu
Microsoft Online Community Support
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

 
Reply With Quote
 
Frank Rizzo
Guest
Posts: n/a
 
      4th Jan 2007
Kevin Yu [MSFT] wrote:
> Hi Frank,
>
> Does this app touch the break changes in .NET 2.0. Since only .NET
> framework 2.0 is supported on x64 OS, in this case, it seems that we cannot
> run it on x64 OS.


Yep, that's essentially the crux of the problem.

Regards
 
Reply With Quote
 
Kevin Yu [MSFT]
Guest
Posts: n/a
 
      5th Jan 2007
Hi Frank,

Could you let me know why the app sticks to .NET framework 1.1? If it is
running on 2.0 is there any problem there? If we can find and fix the
problem, we may try to make the app run on .NET 2.0.

Kevin Yu
Microsoft Online Community Support
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

 
Reply With Quote
 
Austin Ehlers
Guest
Posts: n/a
 
      5th Jan 2007
On Wed, 03 Jan 2007 13:40:46 -0800, Frank Rizzo <(E-Mail Removed)> wrote:

>I have a set of apps that require .net 1.1 framework. I've installed
>them on Windows 2003 Server (x64) with the .net 2.0 (x64) framework. I
>can't seem to find the x64 1.1 framework and the x86 .net 1.1 framework
>refuses to install on win2003 x64. Is there such a thing as x64 1.1
>framework? If not, is there a way to fool the apps into thinking that
>the 1.1 framework is installed?


Frank,
I'm running XP x64, which is the same code base as Windows Server 2003
x64, and .NET 1.1 apps run fine on this machine, as .NET 1.1 is
supported on the x64 platform. See
http://www.microsoft.com/downloads/d...displaylang=en

so I'm not sure what's going on with your system.

Austin
 
Reply With Quote
 
Kevin Yu [MSFT]
Guest
Posts: n/a
 
      5th Jan 2007
Sorry, Frank.But it just come to mind that if you're using the Windows 2003
x64 edtion, the .NET framework 1.1 has already integrated with the
operating system. You can try to check if it has been installed throught
Add/Remove Programs|Add/Remove Windows components.

Sorry for the inconvenience.

Kevin Yu
Microsoft Online Community Support
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

 
Reply With Quote
 
Frank Rizzo
Guest
Posts: n/a
 
      5th Jan 2007
Kevin Yu [MSFT] wrote:
> Sorry, Frank.But it just come to mind that if you're using the Windows 2003
> x64 edtion, the .NET framework 1.1 has already integrated with the
> operating system. You can try to check if it has been installed throught
> Add/Remove Programs|Add/Remove Windows components.


Ok, here is the deal. It turns out that 1.1 framework won't install on
the plain vanilla Windows 2003 x64. However, if you install Win2003 R2
on top of it, the .net 1.1 framework happily installs (after giving an
IIS partial incompatibility warning).

So it seems to work ok now.

>
> Sorry for the inconvenience.
>
> Kevin Yu
> Microsoft Online Community Support
> ==================================================
>
> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
VPN From Win2003 to Win2003 Server messes up routing table robdob Microsoft Windows 2000 RAS Routing 0 29th Mar 2009 05:54 PM
Difference between Win2003 Std and Win2003 Advance Server ELTANO Microsoft Windows 2000 2 2nd Nov 2004 07:11 PM
config files question for console apps / windows apps jai hanuman Microsoft Dot NET Framework Forms 2 15th Mar 2004 08:44 AM
winsock problem? some apps can't access any web site, most apps have no problems. W2K SP4+ Clark Wilson Microsoft Windows 2000 Networking 1 14th Sep 2003 02:17 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:40 PM.