My First ColdFusion Web Service

<!--- Invoke the web service as a dude. --->
<cfinvoke
	webservice="http://..../webservices/Fun.cfc?wsdl"
	method="GetCompliment"
	returnvariable="REQUEST.Compliment">
 
	<cfinvokeargument name="Gender" value="M" />
</cfinvoke>
 
<!--- Display compliment. --->
#REQUEST.Compliment#

For Cut-and-Paste