User Guide
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