406
Chapter 21 Building Custom CFXAPI Tags
To import a Java custom tag:
1
Export the custom tag’s registry entry by using the Regedit utility. This creates a
file similar to the following:
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVer
sion\ CustomTags\CFX_TEST]
"ClassName"="ProcessTagRequest"
"Description"="Sample CFX tag."
2
In the install script, import the registry entry by including the following
command in the install script:
regedit
importfilename
To import a C++ custom tag:
1
Export the custom tag’s registry entry by using the Regedit utility. This creates a
file similar to the following:
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVer
sion\ CustomTags\CFX_TEST]
"LibraryPath"="C:\\cfusion\\cfx\\CFX_TEST\\test.dll"
"ProcedureName"="ProcessTagRequest"
"Description"="Sample CFX tag."
"CacheLibrary"="1"
2
In the install script, import the registry entry by including the following
command in the install script:
regedit
importfilename
Summary of Contents for COLDFUSION 5-DEVELOPING
Page 1: ...Macromedia Incorporated Developing ColdFusion Applications MacroMedia ColdFusion 5 ...
Page 58: ...38 Chapter 3 Querying a Database ...
Page 134: ...114 Chapter 7 Updating Your Database ...
Page 210: ...190 Chapter 10 Reusing Code ...
Page 232: ...212 Chapter 11 Preventing and Handling Errors ...
Page 238: ...218 Chapter 12 Using the Application Framework ...
Page 262: ...242 Chapter 12 Using the Application Framework ...
Page 278: ...258 Chapter 13 Extending ColdFusion Pages with CFML Scripting ...
Page 320: ...300 Chapter 15 Indexing and Searching Data ...
Page 336: ...316 Chapter 16 Sending and Receiving E mail ...
Page 374: ...354 Chapter 18 Interacting with Remote Servers ...