I'm migrating a CF4 application which makes frequent use of cfx tags (cfx_j tag, specifically, which calls Java classes). The syntax of a cfx_j tag looks like this:
<cfx_j class="java.package.Class" method="myMethod" arg1="value1" arg2="value2" ...> I'm trying to "wrap" cfx_j calls in a CFC method which takes as arguments the class, method, and structure of arguments (like argcollection for cfinvoke). I then hope to construct a string which is a valid cfx_j call, and execute it using Evaluate. This should cause some local variables to be set. The problem is that you can't seem to put tag-like call into an Evaluate function. I get this error: ColdFusion was looking at the following text:<p><</p><p>The CFML compiler was processing:<ul>< marks the beginning of a ColdFusion tag.Did you mean LT or LTE?</ul> Is there any way to do this? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "cfaussie" 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/cfaussie -~----------~----~----~----~------~----~------~--~---
