On Wed, 10 Nov 2004 13:41:28 -0600, Schreck, Thomas (PPC) <[EMAIL PROTECTED]> wrote: > My situation is I instantiated both parent and child and did a dump > using getMetaData() for each instantiation. I saw the change in the > parent meta data, but the child's meta data did not reflect the change > in the parent. > > I think it's more of an issue of how CF cache's cfc meta data.
Correct. Metadata is generated by the first load of a type. Types are only loaded when they change. You chanegd a parent CFC and saw its metadata change because it was recompiled. You didn't change the child so its metadata didn't change (because it wasn't recompiled). -- Sean A Corfield -- http://www.corfield.org/ Team Fusebox -- http://www.fusebox.org/ Breeze Me! -- http://www.corfield.org/breezeme Got Gmail? -- I have 1 invite "If you're not annoying somebody, you're not really alive." -- Margaret Atwood ---------------------------------------------------------- You are subscribed to cfcdev. To unsubscribe, send an email to [EMAIL PROTECTED] with the words '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 [EMAIL PROTECTED]
