I have a Web Service I need to call in Silverlight and I can't figure out how to do it.
Most examples I find aren't 3.0 or are talking about WPF. Any assistance would be appreciated.
EDIT: Made some progress, still can't get it working though. It says it's returning a void but in my service I'm returning a list. (Unless this isn't calling my method. I assumed it added "async" to my method name.)
FileServiceSoapClient sc = new FileServiceSoapClient();
List<string> x = sc.GetFilesAsync();