OK, I must be doing something really dumb here... I run this following
code:

<cfinvoke
webservice="http://dev-iet.open.ac.uk/webservices/people.cfc?wsdl";
        method="getPeople"
        returnvariable="testing">
        <cfinvokeargument name="GroupID" value="15"/>
</cfinvoke>
<cfoutput>#testing#</cfoutput>

To call the webservice code:
<cfcomponent>
        <cffunction name="getPeople" access="remote"
returntype="string">
                <cfargument name="GroupID" type="numeric"
required="yes">
                <cfset returnXML = "my xml string will be here">
                <cfreturn returnXML>
        </cffunction>
</cfcomponent>
(and this appears fine as wsdl when I go to
http://dev-iet.open.ac.uk/webservices/people.cfc?wsdl)

But I get the error "Web service operation "getPeople" with parameters
{GroupID={15},} could not be found. "

So - what have I done wrong?! For info the webservice is on CFMX (6.1)
and the calling code is on CF7
Alex

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195151
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to