Web service cast exception why?! - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T12:33:54Zhttp://stackoverflow.com/feeds/question/605570http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/605570/web-service-cast-exception-why1Web service cast exception why?!CodeMonkey2009-03-03T08:37:21Z2009-03-03T08:40:27Z
<pre><code>Error Cannot implicitly convert type 'string[]' to 'System.Collections.Generic.List<string>'
</code></pre>
<p>The above error is caused when I call a method to a web service</p>
<pre><code>List<string> bob = myService.GetAllList();
</code></pre>
<p>Where: GetAllList =</p>
<pre><code>[WebMethod]
public List<string> GetAllList()
{
List<string> list ....
return list;
}
</code></pre>
<p>I have rebuilt the whole solution, updated the service references and still I get a cast exception any ideas?</p>
http://stackoverflow.com/questions/605570/web-service-cast-exception-why/605577#6055775Answer by REA_ANDREW for Web service cast exception why?!REA_ANDREW2009-03-03T08:39:21Z2009-03-03T08:39:21Z<p>you need to do this:</p>
<pre><code>List<string> bob = new List<string>(myService.GetAllList());
</code></pre>
<p>An overload for the constructor of a generic list takes an IEnumerable of the specified type to initialize the array. You can not, like the exception states, implicitly cast it staright to that type.</p>
<p>Andrew</p>
http://stackoverflow.com/questions/605570/web-service-cast-exception-why/605579#6055791Answer by Gerrie Schenck for Web service cast exception why?!Gerrie Schenck2009-03-03T08:39:58Z2009-03-03T08:39:58Z<p>The SOAP protocol doesn't support generic collections.</p>
<p>Try this instead:</p>
<pre><code>List<string> bob = new List<string>(myService.GetAllList());
</code></pre>