views:

181

answers:

1

I've got a Classic ASP application running on 64-bit Windows Server 2003 in 32-bit emulation on IIS.

I'm bringing a COM component over from a 32-bit server and wondered how I would install that to be accessible from the Classic ASP app. I can choose between a 64-bit and a 32-bit version of the component.

Do I:

  • install the 32-bit version of the component on the 64-bit server and call it from the Classic ASP app, or
  • install the 64-bit version of the component and try to call it from the Classic ASP app?
+1  A: 

32 bit application always needs 32 bit components and vice versa. 32 bit app cannot load 64 bit dlls (without turning to out of proc solutions).

Shay Erlichmen