Andrew Arnott
Andrew Arnott

Reputation: 81801

How to use ActiveX/COM from ColdFusion?

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)

Upvotes: 0

Views: 671

Answers (2)

Rob Bilson
Rob Bilson

Reputation: 361

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.

Upvotes: 3

Henry
Henry

Reputation: 32915

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

Upvotes: 3

Related Questions