Hi Donnie,
The issue here is that the <value> tag must be a child element of the
<include> tag, so this portion of your XML:
<include name="body" template="frmPhrase.cfm" />
<value name="xe.translate" value="translationFormAction" />
Should look like this instead:
<include name="body" template="frmPhrase.cfm">
<value name="xe.translate" value="translationFormAction" />
</include>
(Note that the <include> tag is wrapping the <value> tag, rather than
self-closing.)
--
Ezra Parker
On Tue, Sep 22, 2009 at 11:17 AM, DonnieV <[email protected]> wrote:
>
> I am attempting to build the sample appication in quickstart but after
> I have added the seciton:
>
> <event-handler name="translationForm">
> <views>
> <include name="body" template="frmPhrase.cfm" />
> <value name="xe.translate" value="translationFormAction" />
> </views>
> </event-handler>
> and attempt to run it I get the error shown in the subject.
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
Model-Glue Sites:
Home Page: http://www.model-glue.com
Documentation: http://docs.model-glue.com
Bug Tracker: http://bugs.model-glue.com
Blog: http://www.model-glue.com/blog
You received this message because you are subscribed to the Google
Groups "model-glue" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/model-glue?hl=en
-~----------~----~----~----~------~----~------~--~---