32 位 crypt 组件在 64 位服务器上运行,带有 32 位 IIS 应用程序!
我有一个在 IIS 上以 32 位模拟方式在 64 位 Windows Server 2003 上运行的经典 ASP 应用程序。
我从 32 位服务器引入了一个 COM 组件,并想知道如何安装该组件以便可以从经典 ASP 应用程序进行访问。 我可以选择该组件的 64 位版本和 32 位版本。
我应该:
- 在 64 位服务器上安装该组件的 32 位版本并从经典 ASP 应用程序调用它,还是
- 安装该组件的 64 位版本并尝试从经典 ASP 应用程序调用它?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
32 位应用程序始终需要32 位组件,反之亦然。 32 位应用程序无法加载 64 位 dll(不转向进程外解决方案)。
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).