cfinvokeargument omit attribute behavior
First off, I am working with ColdFusion 8. I am calling a web service method with an argument with the WSDL definition:
<s:element minOccurs="0" maxOccurs="1" name="billing_details" type="tns:billing_details"/>
I am calling the method with the cfinvokeargument of
<cfinvokeargument name="billing_details" omit="true" />
According to the documentation: "If you are invoking a web service, you can omit a parameter by setting the omit attribute to "yes". If the WSDL specifies that the argument is nillable, ColdFusion MX sets the associated argument to null. If the WSDL specifies minoccurs=0, ColdFusion MX omits the argument from the WSDL."
My SOAP request XML contains: <billing_details xsi:nil="true"/>
From my reading of the documentation, that element shouldn't be there. Can anyone clarify if that is correct?
