For this post I was trying to integrate a C#.NET solution with SalesForce.com. A few years ago I had done the same thing using the older Web References which I was more familiar with and which were less flexible and therefore simpler to use. However this time I had a bigger development window and decided to do things right using the newer Service Reference.
Most of the changes were not too hard, just took some digging since so much of the Sales Force documentation uses the old web references code. Add to that the fact that Sales Force had made some decent sized changes to their WSDL over the years and it took me a full day to get the code to compile the first time.
When I ran it for the first time I received this odd error :
Error CS0030: Cannot convert type 'TRCWebApp.SalesForceEnterprise.ListViewRecordColumn[]' to 'TRCWebApp.SalesForceEnterprise.ListViewRecordColumn'
The most confusing part initially was that I didn't recognize the class from the basic login code I had written, I had never used it. Fortunately, I was not the first person to run into this problem, and I was able to easily find the solution here. What bothered me enough to write this post is that it was not an error in my code, or even in the Sales Force WSDL. It was actually an error in the .net code generator that created the Reference.cs class from the WSDL.
Apparently the "code generation component cannot handle the XSD definitions that have only one element and the occurrence of the element is unbounded."
There are two solutions listed that I found:
1. "to manually modify the schema and altered the constructors for those 2 classes mentioned above by adding an extra dummy attribute". The Sales Force specific fix is shown here, of course you would have to regenerate the code after making the change:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Before: | |
<complexType name="ListViewRecord"> | |
<sequence> | |
<element name="columns" type="tns:ListViewRecordColumn" maxOccurs="unbounded"/> | |
</sequence> | |
</complexType> | |
<complexType name="ListViewRecordColumn"> | |
<sequence> | |
<element name="fieldNameOrPath" type="xsd:string"/> | |
<element name="value" type="xsd:string" nillable="true"/> | |
</sequence> | |
</complexType> | |
After: | |
<complexType name="ListViewRecord"> | |
<sequence> | |
<element name="columns" type="tns:ListViewRecordColumn" maxOccurs="unbounded"/> | |
</sequence> | |
<xsd:attribute name="tmp" type="xsd:string" /> | |
</complexType> | |
<complexType name="ListViewRecordColumn"> | |
<sequence> | |
<element name="fieldNameOrPath" type="xsd:string"/> | |
<element name="value" type="xsd:string" nillable="true"/> | |
</sequence> | |
<xsd:attribute name="tmp" type="xsd:string" /> | |
</complexType> |
Problem solved, my code compiled and was able to talk to Sales Force.