Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

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

Status
Not open for further replies.

wrighterb

Programmer
Feb 20, 2007
80
US
The Error.
Web service operation "getThisQuery" with parameters {} could not be found.

First my cfc

<cfcomponent>

<cffunction access="remote"
name="getThisQuery"
output="false"
returntype="query"
displayname="getThisQuery"
hint="Return Users">

<cfquery name="result" datasource="generic">
SELECT *
FROM [firstnames]
</cfquery>

<cfreturn result>
</cffunction>
</cfcomponent>

Now I am trying to invoke it to get all the names.

<cfinvoke
method="getThisQuery"
returnvariable="result"
webservice="</cfinvoke>

<cfdump var="#result#">

Can anybody help? What am I doing wrong?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top