views:

140

answers:

2

Is it possible to use an ActiveX/COM object from ColdFusion? If so, where's the documentation or samples for it?

(non ColdFusion programmer, asking on behalf of a ColdFusion programmer)

+3  A: 

see: Integrating COM and CORBA Objects in CFML Applications

If you're worried about COM object performance, use .NET based CFML Engine like BlueDragon for the Microsoft .NET Framework

Henry
+3  A: 

You can call both COM objects and .Net assemblies natively in ColdFusion both with excellent performance. Check out the following in the cf docs:

Examples are included in the docs.

Rob Brooks-Bilson
Thanks. This is excellent!
Andrew Arnott