Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Custom Packages

Status
Not open for further replies.

faust13

Programmer
Aug 7, 2001
176
US
I'm trying to configure my development box to use Allaire's custom package to develop custom ColdFusion tags. In order to do so, you must implement Allaire's cfx.jar so you may:

import com.allaire.cfx.*;

in your code.

What do I need to do to put or configure the jar so my Sun jdk compiler sees it? ----------------------------------------
Is George Lucas Kidding...
 
If you are using javac from the commandline then you need to place cfx.jar on the System CLASSPATH or include it as an argument to javac and java(when you run the program). The easier method is to add it to your CLASSPATH. Write back if you need help with this.

If you are using a development tool (Jbuilder, Forte, etc.) then you usually need to add the jar to the Project CLASSPATH, went happens to have no relation to the machine's System CLASSPATH. Wushutwist
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top