All of a sudden on my server the call to a cfc webservice wsdl (in production) is not returning the variable names in the wsdl.
Instead of the variable names in the function as defined by the cfarguments, it is returning variables named in0, in1, in2, in3.
<wsdl:message name="getAccountInfoRequest"><wsdl:part name="in0" type="xsd:string"/> <wsdl:part name="in1" type="xsd:string"/> <wsdl:part name="in2" type="xsd:string"/> <wsdl:part name="in3" type="xsd:string"/> </wsdl:message> |
the real variable names as defined in the CFC are EmailAddress, Token, ServiceUser and ServicePassword.
Calling the same cfc wsdl on the same server in the development site returns the proper variable names.
<wsdl:message name="getAccountInfoRequest">
<wsdl:part name="EmailAddress" type="xsd:string"/>
<wsdl:part name="Token" type="xsd:string"/>
<wsdl:part name="ServiceUsername" type="xsd:string"/>
<wsdl:part name="ServicePassword" type="xsd:string"/>
</wsdl:message>
Any help will be greatly appreciated.