You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was getting this error with CF 10 while trying to getBuckets().
Update the component with lines bellow to fix the error
in s3.cfc line:83
change <cfset buckets = xmlSearch(data, //:Bucket)>
to <cfset buckets = xmlSearch(data, //*[local-name()='Bucket'])>
The text was updated successfully, but these errors were encountered:
I was getting this error with CF 10 while trying to getBuckets().
Update the component with lines bellow to fix the error
in
s3.cfc line:83
change
<cfset buckets = xmlSearch(data, //:Bucket)>
to
<cfset buckets = xmlSearch(data, //*[local-name()='Bucket'])>
The text was updated successfully, but these errors were encountered: