Im trying to deserialize the response from this simple web serviceIm using the following code:\[code\]WebRequest request = WebRequest.Create("http://inb374.jelastic.tsukaeru.net:8080/VodafoneDB/webresources/vodafone/04111111"); WebResponse ws = request.GetResponse();XmlSerializer s = new XmlSerializer(typeof(string));string reponse = (string)s.Deserialize(ws.GetResponseStream());\[/code\]