<--- --------------------------------------------------------------------------------------- ---- Blog Entry: How Do I Call Methods On ColdFusion Components In Java Author: Ben Nadel / Kinky Solutions Link: http://www.bennadel.com/index.cfm?dax=blog:331.view Date Posted: Oct 9, 2006 at 6:16 PM ---- --------------------------------------------------------------------------------------- ---> public java.lang.String GetFirstName(){ // Call this method on the ColdFusion component // object and return that value. This component is // currently stored as java.lang.Object (this.Handler). return( this.Handler.GetFirstName() ); }