Title:
Bug 83429:-(Watson Migration Closure)[ANeff] Bug for: cfsharepoint doesn't scope in/inout parameter valuesI noticed that <cfsharepoint /> does not use its "name" attribute to scope the return value from ’out’ parameters
| View in TrackerStatus/Resolution/Reason: Closed/Withdrawn/
Reporter/Name(from Bugbase): Aaron Neff / Aaron Neff (Aaron Neff)
Created: 06/22/2010
Components: SharePoint Support
Versions: 9.0
Failure Type:
Found In Build/Fixed In Build: 0000 /
Priority/Frequency: Normal / Few users will encounter
Locale/System: English / Win All
Vote Count: 3
Problem:
[ANeff] Bug for: cfsharepoint doesn't scope in/inout parameter values
I noticed that <cfsharepoint /> does not use its "name" attribute to scope the return value from ’out’ parameters.
Example Copy.GetItem takes "fields" and "stream" as out parameters.
Consider this:
<cfsharepoint action="getItem" name="local.output" login="#{login creds here}#" params="#{fields=’fields’,stream=’stream’,..}#" wsdl="http://sharepoint.mydomain.com/_vti_bin/Copy.asmx?wsdl" />
CF returns this:-
local.output- variables.fields (bad!)- variables.stream (bad!)
CF should, IMO, return this (’out’ values added as keys on result variable):- local.output- local.output.fields- local.output.stream
So, the problem is this: cfsharepoint returns ’out’ parameter values into variables scope. I also tried scoping the names of the out parameters, using the tag’s name attribute (local.output), such as:
<cfsharepoint action="getItem" name="local.output" login="#{login creds here}#" params="#{fields=’local.output.fields’,stream=’local.output.stream’,..}#" wsdl="http://sharepoint.mydomain.com/_vti_bin/Copy.asmx?wsdl" />But no luck. Here CF does not return the values into variables scope or cfsharepoint’s return variable. They appear to just vanish. Can something please be done here, to return values of cfsharepoint out parameters into function-local scope?
Related thread: https://prerelease.adobe.com/r/?af07436e7cc54ad99212426ec688580c
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 3041704
External Customer Info:
External Company:
External Customer Name: Aaron Neff
External Customer Email: 3D1D17B03C844EBF992001AC
External Test Config: 06/22/2010
Attachments:
Comments: