Add the System.Xml namespace and the System.Xml.Linq
Remove line one - - > myListService.URL = "http.... then your build will run with 0 errors 0 warnings and 0 Messages
Use Westerdaled's advice from the blog post, on commenting out
///+ myListService.Credentials = System.Net.CredentialCache.DefaultCredentials; +/
and then adding these two lines
myListService.UseDefaultCredentials = true;
myListService.PreAuthenticate = true;
along with HP's advice on using the correct path all the way into the sub site,
so
http://2010app1/sites/team/how?_vti_bin/Lists.asmx
and not
http://2010app1/_vti_...
did the trick thanks again