What causes a "not found" error if it's plainly there?
Another function inside the same component is working fine...

Error message:
Web service operation "CLIENTadd" with parameters {WSINTH_FNAME={BOB},} 
could not be found.

Invoking Code:

<cfinvoke webservice="www.mySITE/process.cfc?wsdl"
           method="CLIENTadd"
           WSintH_fname="BOB" >

Here's the function:

<cffunction name="CLIENTadd"
            access="remote"                                                     
            returntype="boolean"
             hint="Add a New Client" >                  
    <cfargument name="WSintH_fname" type="string" />
  <cfquery>
    INSERT INTO ClientInfo ( intH_fname  )
    VALUES ( '#arguments.WSintH_fname#' )
   </cfquery>           
  <cfreturn true>
</cffunction>


Another function on another page as per below functions fine:

<cfinvoke webservice="www.mySITE/process.cfc?wsdl"
           method="getLOGIN"                                                    
          returnvariable="getLOGIN"
           WSusername="#form.user#"
           WSpassword="#form.passw#" >

<cffunction name="getLOGIN"
             access="remote"                                                    
            returntype="query">

.........lookup query here...

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263793
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to