I get the error: "Element QOBJECT.TRANSFER_COMPOSITEID is undefined in
ARGUMENTS" everytime I try to do a simple "getProduct()"

:::My Transfer.xml:::

<package name="product">
   <object name="product" table="_tbl_product">
      <id name="product_id" type="numeric" />
      <property name="name" type="string" column="name" />
      <property name="description" type="string" column="description"
nullable="true" />
      <property name="is_active" type="numeric" column="is_active"
nullable="false" />

      <manytomany name="Director" table="_tbl_product_director"
lazy="true">
         <link to="product.product" column="fk_product"/>
         <link to="director.director" column="fk_director"/>
         <collection type="array">
            <order property="first_name" order="asc"/>
         </collection>
      </manytomany>

      <manytomany name="Performer" table="_tbl_product_performer">
         <link to="product.product" column="fk_product"/>
         <link to="performer.performer" column="fk_performer"/>
         <collection type="array">
            <order property="first_name" order="asc"/>
         </collection>
      </manytomany>
   </object>
</package>

:::My Service Method:::
<cffunction name="getProduct" access="public" output="false"
returntype="transfer.com.TransferObject">
   <cfargument name="product_id" type="string" required="true" />
   <cfreturn getTransfer().get("product.product",
arguments.product_id) />
</cffunction>

Any ideas?? Thank you
--~--~---------~--~----~------------~-------~--~----~
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