i'm trying to deserialize a Movie object from a "German" xml string:

string inputString = "<?xml version=\"1.0\"?>"
    + "<movie title=\"Great Bollywood Stuff\">"
    + "<rating>5</rating>"
    + "<price>1,99</price>" // <-- Price with German decimal separator!
    + "</movie>";

XmlSerializer movieSerializer = new XmlSerializer(typeof(Movie));
Movie inputMovie;

using (StringReader sr = new StringReader(inputString))
{
    inputMovie = (Movie)movieSerializer.Deserialize(sr);
}
System.Console.WriteLine(inputMovie);

here the Movie class for reference:

[XmlRoot("movie")]
public class Movie
{

    [XmlAttribute("title")]
    public string Title { get; set; }

    [XmlElement("rating")]
    public int Rating { get; set; }

    [XmlElement("price")]
    public double Price { get; set; }

    public Movie()
    {

    }

    public Movie(string title, int rating, double price)
    {
        this.Title = title;
        this.Rating = rating;
        this.Price = price;
    }

    public override string ToString()
    {
        StringBuilder sb = new StringBuilder("Movie ");
        sb.Append("[Title=").Append(this.Title);
        sb.Append(", Rating=").Append(this.Rating);
        sb.Append(", Price=").Append(this.Price);
        sb.Append("]");

        return sb.ToString();
    }

}

as long i put a the <price> as 1.99 it works perfectly. when i use the German German decimal separator 1,99 it's not working anymore.

please advice

link|improve this question

80% accept rate
3  
Do you have a schema associated? In the XML-Schema spec a double needs to be represented with a . w3.org/TR/2001/REC-xmlschema-2-20010502/#decimal, so this behavior is by design. You could replace the type of Price with string and then have a nonserialized property Realprice that uses a Double.Parse with a appropiate formatstring – rene Dec 11 '11 at 12:01
the xml is given to me in this format and i can't do anything about that. but thank you for your answer! – Daniel Kutik Dec 11 '11 at 12:03
1  
Important note: currency values should almost always be decimal, not double – Marc Gravell Dec 11 '11 at 12:19
feedback

3 Answers

up vote 4 down vote accepted

As already noted, that simply isn't a valid way of representing a numeric value in XML. It is fine for a string though. You could do:

[XmlIgnore]
public decimal Price {get;set;}

[XmlElement("price")]
public string PriceFormatted {
    get { return Price.ToString(...); }
    set { Price = decimal.Parse(value, ...); } 
}

Where "..." represents your choice of format specifier and CultureInfo

link|improve this answer
in my case CultureInfo.GetCultureInfo("de-DE").NumberFormat – Daniel Kutik Dec 11 '11 at 12:22
feedback
[XmlRoot("movie")] 
public class Movie {     
      [XmlElement("price")]     
      public string Price { get; set; }  

      [XmlIgnore]
      public double RealPrice { 
         get { 
               double resultprice;
               Double.TryParse(Price, 
               NumberStyles.Any, 
               new CultureInfo("de-DE"), resultprice);
               return resultprice;
              } 
       }
link|improve this answer
feedback

As mentioned, the XmlSerializer is not the right tool for you, because it is going to use the W3C schema datatype specification.

Alternative solutions include using an XSLT file to convert the input XML before deserialisation, or using another tool such as Linq to XML.

link|improve this answer
Can you give a sample please? – Surjit Samra Dec 11 '11 at 12:54
2  
stackoverflow.com/questions/647991/… may give you some ideas for translation – devdigital Dec 11 '11 at 13:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.