I need to write a Windows Service to be installed onto a Clustered Server. Besides the references that I have reported in the post at http://forums.asp.net/p/450164/1994483.aspx#1994483, are there any instructions on MSDN that are specific to Dot Net application as opposed to C++? Also any information on writing a VB6 application to be cluster aware would be appreciated.
By cluster-aware, they mean don't reference server1 versus server2 rather reference the cluster instead. Use this rule of thumb: if it isn't shared (cluster IP address, cluster shared drive, etc...), don't use it in your code. -- Bryan Phillips MCT, MCSD, MCDBA, MCSE Microsoft MVP - Client Application Development Blog: http://bphillips76.spaces.live.com Web Site: http://www.composablesystems.net "Tatworth" wrote in message news:B7A3DB6F-4530-4301-B243-CE667C0C46E8@microsoft.com: > I need to write a Windows Service to be installed onto a Clustered Server. > Besides the references that I have reported in the post at > http://forums.asp.net/p/450164/1994483.aspx#1994483, are there any > instructions on MSDN that are specific to Dot Net application as opposed to > C++? > > Also any information on writing a VB6 application to be cluster aware would > be appreciated.