Chip,That is the pre-MX behaviour. Pre MX <cfset foo.bar = 6> where foo didn't already exist as a struct would create a simple var named foo.bar. In MX the foo struct will automagically be created. and the bar key assigned the value.
Within the service add this line right under the <cfargument> tag.
<cfset var aADUserInfo = structNew()>
The reason its not working properly is because you are really only
creating strings that happen to have a 'dot' in the name. Unless you
specifically declare a variable as a structure, cf assumes it's just a
string. (Least I'm pretty sure.
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the word 'unsubscribe cfcdev' in the message of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by Mindtool, Corporation (www.mindtool.com).
