TimBinTexas
unread,Feb 10, 2014, 8:48:10 AM2/10/14You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Has anyone used the cfexchangecontact tag with the cfexchangefilter tag?
According to all the docs I'm seeing the following should work to pull down all exchange contacts for a user:
<cfexchangecontact action="get"
name="qContacts" username="#mailuser#"
password = "#mailuserpassword#"
mailboxname="#mailboxname#"
server="#mailserver#" />
<cfexchangefilter name="maxRows" value="-1">
</cfexchangecontact>
... but it generates an error:
Context validation error for tag cfexchangecontact.Either the end tag </cfexchangecontact> encountered on line xx at column 3 requires a matching start tag or tag cfexchangecontact does not support end tag.
cfexchangecontact works fine without an end tag, but only returns 100 records (the default).