I'm trying to call CreateGPSDDraft function (new 10. SP1 ArcPy function) with multiple results parameter as described in this help topic:
http://resources.arcgis.com/en/help/...0000008z000000
But, I'm getting "Value Error: C:/SCRIPTSTEST/ToolOneResult.rlt" (Line 481 in "_base.py").
There's no errors if I'm calling CreateGPSDDraft function with any single result.
Any advice from Esri team?
http://resources.arcgis.com/en/help/...0000008z000000
Code:
toolOneResultFullPath = "C:/SCRIPTSTEST/ToolOneResult.rlt"
toolTwoResultFullPath = "C:/SCRIPTSTEST/ToolTwoResult.rlt"
arcpy.CreateGPSDDraft([toolOneResultFullPath , toolTwoResultFullPath ], "output.sddraft", "myservice")
There's no errors if I'm calling CreateGPSDDraft function with any single result.
Any advice from Esri team?