cfinvokeargument

Passes the name and value of an argument to a component method or a web service method. This tag is used inside of the cfinvoke tag.

  <cfinvokeargument name="" value="">

 cfinvokeargument(name="", value="");

Attribute Reference

name string
Required

The argument name

value string
Required

The argument value

omit boolean
Default: false

Enables you to omit a parameter when invoking a web service.
It is an error to specify omit="true" if the cfinvoke
webservice attribute is not specified.
- true: omit this parameter when invoking a web service.
- false: do not omit this parameter when invoking a web service.
Values:
  • true
  • false

Examples
Sample code using the cfinvokeargument tag

Calls a remote web service to perform an addition, uses cfinvokeargument to pass the arguments to the method.

<cfinvoke webservice="http://soaptest.parasoft.com/calculator.wsdl" method="add" returnvariable="answer">
    <cfinvokeargument name="x" value="2">
    <cfinvokeargument name="y" value="3">
</cfinvoke>
<cfoutput>#answer#</cfoutput>

Expected Result: 5.0

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub