Web service cast exception why?! - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T12:33:54Z http://stackoverflow.com/feeds/question/605570 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/605570/web-service-cast-exception-why 1 Web service cast exception why?! CodeMonkey 2009-03-03T08:37:21Z 2009-03-03T08:40:27Z <pre><code>Error Cannot implicitly convert type 'string[]' to 'System.Collections.Generic.List&lt;string&gt;' </code></pre> <p>The above error is caused when I call a method to a web service</p> <pre><code>List&lt;string&gt; bob = myService.GetAllList(); </code></pre> <p>Where: GetAllList =</p> <pre><code>[WebMethod] public List&lt;string&gt; GetAllList() { List&lt;string&gt; 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#605577 5 Answer by REA_ANDREW for Web service cast exception why?! REA_ANDREW 2009-03-03T08:39:21Z 2009-03-03T08:39:21Z <p>you need to do this:</p> <pre><code>List&lt;string&gt; bob = new List&lt;string&gt;(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#605579 1 Answer by Gerrie Schenck for Web service cast exception why?! Gerrie Schenck 2009-03-03T08:39:58Z 2009-03-03T08:39:58Z <p>The SOAP protocol doesn't support generic collections.</p> <p>Try this instead:</p> <pre><code>List&lt;string&gt; bob = new List&lt;string&gt;(myService.GetAllList()); </code></pre>