Hi all,

I am developing a simple web service, but i am getting an error like this

 Web service operation echoString with parameters {INPUT={hello}} cannot be 
found.
 
Here is the published web service

<cfcomponent>
<cffunction name="echoString" returnType="string" output="no">
        <cfargument name="input" type="string">
        <cfreturn #arguments.input#>
      </cffunction>

</cfcomponent>

And the test file is

 <cfinvoke webservice ="http://www.ecodes.biz/UserVerif.cfc?wsdl";
  method ="echoString"
  input = "hello" 
  returnVariable="foo">

<cfoutput>#foo#</cfoutput> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325223
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to