My team is getting new XP64 workstations. We've been using XP32 up until now. Most of our work is done in managed C#/VS2008/.net 3.5 and SQL Server 2005. However we do have a couple apps that are still in VS2005/.net 2.0. The majority of our applications are ASP.NET webforms apps and WCF services that are running on 64bit servers in production. However, we have some WPF development going on that will have to run on 32bit machines.
Are there any gotchas or transition pains we should be aware of?
You won't be able to talk to MS Access databases from .NET x64, because there are no x64 Jet drivers.
I would consider this an excellent reason to move to x64.
hope this help
Registering COM 32 bit DLL for asp 64 bit call
Many links about convention 32-64 bits
General FAQs About 64-bit Windows
64-bit System Design
see this tips too Biggest performance improvement you’ve had with the smallest change?
more great blog tips : Back to Basics: 32-bit and 64-bit confusion around x86 and x64 and the .NET Framework and CLR
Windows Application Quality Cookbook from Microsoft
DevReadiness.org
This site is dedicated to assisting the Windows ISV ecosystem develop high quality applications for new versions of the platform. Windows 7 was recently announced at the PDC 2008 conference, a link to the new app readiness "cookbook" is provided on the right
The Microsoft.com OPS guys have blogged about their migration to x64 and how it all works.
Running Microsoft.com on 64 Bit…The Dependencies, The Goodness, the Gotcha’s
You may run-in to an issue with string.GetHashCode() returning a different value for the same string on 32-bit and 64-bit machines as they'll run different versions of the CLR.
Crucially:
More info here and here.
I've been developing on 64-bit platform for some time. This is a small tip that can save you a headache.
If you get the exception
there is a high probability that the application could not find a 64 bit version of the assembly.
We experience this error frequently when accessing databases using OLEDB/Jet drivers. I've also experienced this with tools that integrate with TFS.
To fix this, head to the "Compile" tab under your project settings, "Advanced Compile Options" and select "x86" as the target CPU.
Hope this helps!
Sun has a good article about it. http://developers.sun.com/solaris/articles/ILP32toLP64Issues.html