As of ColdFusion (2021 release), CORBA has been removed. You can no longer use CORBA-related features, functions, and tags.
The CreateObject function can call a method on a CORBA object. The object must be defined and registered for use.
A handle to a CORBA interface.
CreateObject(type, context, class, locale)
Integrating COM and CORBA Objects in CFML Applications in the Developing ColdFusion Applications
See the History section of the main CreateObject function page.
Parameter |
Description |
|---|---|
type |
Type of object to create.
|
context |
|
class |
|
locale |
The name of the Java config that holds the properties file. For more information, see Configuring and Administering ColdFusion. |
In the class parameter, if "context=NameService", use a dot separator for the first part of the string. Use either of the following formats:
myobj = CreateObject("corba", "d:\temp\tester.ior", "ior",
"visibroker") // uses IOR
myobj = CreateObject("corba", "/Eng/CF", "nameservice",
"visibroker") // uses nameservice
myobj = CreateObject("corba", "d:\temp\tester.ior", "nameservice")
// uses nameservice and default configuration
Sign in to your account