We have an error that comes and goes when calling various methods in a web 
service.

"Web service parameter name in0 cannot be found in the provided parameters 
{session_token,public_file_id,return_format}"

The arguments between the { and } change depending on the method.

The WS is on CF8.0.1. It's being called from two other CF apps, one on CF8.0.1, 
the other CF7.

Here are two calls to the method:

<cfinvoke webservice="pathToWSDL" returnvariable="returnVar" method="method1">
        <cfinvokeargument name="arg1" value="value1">
</cfinvoke>

<cfinvoke webservice="pathToWSDL" returnvariable="returnVar" method="method2">
        <cfinvokeargument name="arg1" value="value1">
        <cfinvokeargument name="arg2" value="value2">
        <cfinvokeargument name="arg3" value="value3">
</cfinvoke>

method1 looks like this:

<cffunction name="getSessionTokenSeed" access="remote" returntype="string" 
output="false">

        <cfargument name="arg1" type="GUID">
        
        <!--- Logic here --->
        
        <cfreturn "a string">

</cffunction>

method2 is similar and also has an argument of type GUID.

The WDSL can be found here:

http://bv-01.bubblevault.com/wsdl.xml

Any pointers? I'm about to dumb-down the argument types to strings to see if 
that helps but I think I'd like to leave them as GUID if I can.

Thanks.

Adrian 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316320
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