• Yaakov Ellis
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Bug is documented at http://www.fishofprey.com/2014/10/importing-salesforce-winter-15-partner.html

This has been present since Fall 2014.

When the wsdl is converted into a .Net web service, the ListViewRecordColumn is now defined in .Net at `typeof(ListViewRecordColumn)` instead of `typeof(ListViewRecordColumn[])`. 

This will result in the following errors appearing unless it is manually corrected in the generated c#
  • System.InvalidOperationException: Unable to generate a temporary class (result=1).
  • error CS0029: Cannot implicitly convert type 'XYZ.SalesforcePartner.ListViewRecordColumn' to 'XYZ.SalesforcePartner.ListViewRecordColumn[]'
Bug is documented at http://www.fishofprey.com/2014/10/importing-salesforce-winter-15-partner.html

This has been present since Fall 2014.

When the wsdl is converted into a .Net web service, the ListViewRecordColumn is now defined in .Net at `typeof(ListViewRecordColumn)` instead of `typeof(ListViewRecordColumn[])`. 

This will result in the following errors appearing unless it is manually corrected in the generated c#
  • System.InvalidOperationException: Unable to generate a temporary class (result=1).
  • error CS0029: Cannot implicitly convert type 'XYZ.SalesforcePartner.ListViewRecordColumn' to 'XYZ.SalesforcePartner.ListViewRecordColumn[]'