i have xml string in actionscript (flashbuilder). encoding using escape(str) , sending c# using web services.
now, want deserialize string problem is, when decode string decodes inlcuding "&" , xmlserializer complains.
and if don't decode deserialized string comes %20 instead of spaces.
is there easy way of decoding escaped string in c# feed xml serializer?
looks you're confusing url-encoding xml/html-encoding. actionscript's escape
method url-encodes. xml/html-encode see this stackoverflow answer.
Comments
Post a Comment