WCF wrapper COM object
I have a third party COM component (they don't offer a .Net assy), that has the additional feature that it only works under x86 compile.
I am trying to wrap this in a WCF service, but if I select x86, the service won't start (System.BadImageFormatException).
Any workaround开发者_高级运维s for this ?
Thanks Larry
The issue is that the VS2008 WCF debugger will only start up in 64bit. I solved the problem by creating a 32bit host and running that
精彩评论