FALCONSEYE
Programmer
ok, here is what i have
<cfscript>
myrecord = StructNew();
myrecord.method = request.method;
myrecord.salesorder_id = request.salesorder_id;
</cfscript>
then i call a webservice and pass myrecord struct.
however, the web service expects method and salesorder_id to be lower case. of course, cold fusion converts my variable names to upper case. is there a way to make cold fusion variable names to not be uppercase?
for instance can i do something like
firstName,
firstname,
fIrstname ?
thanks for the help in advance...
<cfscript>
myrecord = StructNew();
myrecord.method = request.method;
myrecord.salesorder_id = request.salesorder_id;
</cfscript>
then i call a webservice and pass myrecord struct.
however, the web service expects method and salesorder_id to be lower case. of course, cold fusion converts my variable names to upper case. is there a way to make cold fusion variable names to not be uppercase?
for instance can i do something like
firstName,
firstname,
fIrstname ?
thanks for the help in advance...