I am having some issues with CF7 - I am sure it's just me being a newbie to
Cold Fusion... But here is the deal... I need to set up several WSDLs to allow
me to access a database from various other applications written with Flash 7/8
and actionscript... The WSDLs don't seem to work - I keep getting messages like
this...

Web service operation "doNothing" with parameters {} could not be found.

Here is the source code I am using...

testws.cfc

<cfcomponent>
<cffunction name="testFunction" returntype="string">
<cfquery name="test" datasource="XLMS">
SELECT * FROM xlms_providerInfo
</cfquery>

<cfoutput query="test">
The Providers First Name is :
#provider_firstname# #provider_mi#. #provider_lastname#<br />
</cfoutput>
</cffunction>

<cffunction name="doNothing" returntype="string">
<cfset var rstr="Coldfusion">
<cfreturn rstr>

</cffunction>
</cfcomponent>


And here is the code that calls this component...

consumews.cfm
<cfinvoke webservice="http://127.0.0.1:8500/beta/testws.cfc?WSDL"
method="doNothing" returnvariable="rstr">

<cfoutput>
#rstr#
</cfoutput>

Any help would be appreciated. Thank you for your time and anticipatd
assistance.

Best regards,
James Almeida