NetDataContractSerializer
I'm trying to carry the result of a length task and add to an existing table. I'm attempting to convert my listOfLengths variable .ToString
When I attempt to add the length output with the following steps:
newColumn = GravityMainTable.Columns.Add("ResultLength")
TableLength = listOfLengths.ToString
GravityMainTable.Rows(0).Item("ResultLength") = TableLength
As soon as I add the above assign statement I get the following error
/customer/servlet/servlet.FileDownload?file=00P6000000elty3EAA
What is tarnations is a NetDataContractSerializer? Does anyone know how to resolve this issue?
Walter
-
Seems to be an client-server serialization issue.
Try to add an assign activity where you explicitly set you newColumn activity to Nothing.
0 -
Or it is possible that you might have a better time converting your table to a featureset which generally seems to be happier to be serialized. (Using DataTable To FeatureSet Activity)
Add your 'fields' to that and once you are actually needing the table you can swap it back to a DataTable
Regards
Ralph
0
Please sign in to leave a comment.
Comments
2 comments