o help you understand what I am trying to acheive better, my call to the event gateway is as follows:
<h1>Weather in your city</h1>
<p>This is a test of the weather gateway.</p>
<cfscript>
status = false;
props = structNew();
props.cfcpath="C:\CFusionMX7\gateway\cfc\ecamples\ mesnu\weather.cfc";
props.method="enter";
props.OriginatorID=CGI.SCRIPT_NAME;
props.Message="TW13 5JN";
props.file="gateway_test";
props.type="warning";
status = SendGatewayMessage("Weather", props);
if (status IS True)
WriteOutput('Event Message "#props.Message#" has been sent.');
</cfscript>
Really, what I want to get is the value returned by the CFC.