xmlelement serialize serializar net example deserializar c# .net xml xml-serialization

serialize - xml serialization c#



xmlns=''''> no se esperaba.-Hay un error en el documento XML(2, 2) (2)

Declarar XmlSerializer como

XmlSerializer s = new XmlSerializer(typeof(string),new XmlRootAttribute("response"));

es suficiente.

Estoy tratando de deserializar la respuesta de este servicio web simple

Estoy usando el siguiente código:

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());


Desea deserializar el XML y tratarlo como un fragmento.

Hay una solución muy sencilla disponible here . Lo he modificado para su escenario:

var webRequest = WebRequest.Create("http://inb374.jelastic.tsukaeru.net:8080/VodafoneDB/webresources/vodafone/04111111"); using (var webResponse = webRequest.GetResponse()) using (var responseStream = webResponse.GetResponseStream()) { var rootAttribute = new XmlRootAttribute(); rootAttribute.ElementName = "response"; rootAttribute.IsNullable = true; var xmlSerializer = new XmlSerializer(typeof (string), rootAttribute); var response = (string) xmlSerializer.Deserialize(responseStream); }