Hello, attempting to create an Abstract Decorator for my application
according to Bob Silverberg's blog posting at:
http://www.silverwareconsulting.com/index.cfm/2008/7/21/How-I-Use-Transfer--Part-VIII--My-Abstract-Transfer-Decorator-Object--Simple-Methods

Following his advice, I'm still getting the following error from
Transfer.cfc line 82:
Variable DECORATOR is undefined.

My transfer.xml has the following:
<object name="sys" table="Systems" decorator="cfc.am.common.Sys">
<id name="systemid" type="numeric" />
<property name="systemname" type="string" />
<property name="systemlistenerURI" type="string" />
</object>

My cfc.am.common.Sys has:
<cfcomponent extends="cfc.am.common.AbstractDecorator" output="false">

My abstract decorator has:
<cfcomponent    extends="transfer.com.TransferDecorator"
output="false">

The error goes away when I change cfc.am.common.Sys to:
<cfcomponent extends="transfer.com.TransferDecorator" output="false">

It seems as if Transfer doesn't like it when don't immediately extend
"transfer.com.TransferDecorator" in my decorator class explicitly. Any
ideas?

--~--~---------~--~----~------------~-------~--~----~
Before posting questions to the group please read:
http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer

You received this message because you are subscribed to the Google Groups 
"transfer-dev" group.
To post to this group, send email to transfer-dev@googlegroups.com
To unsubscribe from this group, send email to 
transfer-dev-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/transfer-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to