Ok, playing around with stuff this afternoon.  I created an 'empty' cfc named 
test.cfc, its empty for no good reason just a proof of concept
<cfcomponent>

        <!--- empty --->

</cfcomponent>

Now I created test.cfm
<cfscript> 

        myobj = CreateObject("Component", "test");
        myobj.t=6;  
        WriteOutput('t= ' & myobj.t);
</cfscript>

When I call test.cfm from ze browser I get no error. In fact I get t= 6 output to the 
browser.  Now in Java, etc... this would bomb out.  How can I programatically keep 
this from occuring?  Or can I?  Am I missing something here?  

Doug

---->dugOUT   ��� 
"When I was kidnapped, my parents snapped into action.  They rented out my room." -- 
Woody Allen

----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the word 'unsubscribe cfcdev'
in the message of the email.

CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).

An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]

Reply via email to